Skip to content

Conversation

klutchell
Copy link
Contributor

Allow a top-level custom stream configuration file to be loaded.

Example /data/nginx/custom/stream.conf that performs DNS load balancing with the upstream block.

server {
    listen 192.168.8.4:53;
    proxy_pass dns_servers;
}
server {
    listen 192.168.8.4:53 udp;
    proxy_pass dns_servers;
}
upstream dns_servers {
    server 192.168.8.8:53 weight=5;
    server 192.168.8.9:53;
    server 1.1.1.1:53 backup;

This type of configuration is not possible with the stream files generated via NPM.

Allow a top-level custom `stream` configuration file to be loaded.
@jc21
Copy link
Member

jc21 commented Dec 1, 2020

Docker Image for build 1 is available on DockerHub as jc21/nginx-proxy-manager:github-pr-750

@jc21 jc21 changed the base branch from master to develop January 3, 2021 02:20
@jc21
Copy link
Member

jc21 commented Jan 3, 2021

Docker Image for build 2 is available on DockerHub as jc21/nginx-proxy-manager:github-pr-750

@jc21 jc21 merged commit 1faac4e into NginxProxyManager:develop Jan 3, 2021
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment

Labels

None yet

Projects

None yet

Development

Successfully merging this pull request may close these issues.

2 participants