mirror of
				https://github.com/thib8956/nginx-proxy
				synced 2025-11-03 18:49:20 +00:00 
			
		
		
		
	
				
					committed by
					
						
						Thomas LEVEIL
					
				
			
			
				
	
			
			
			
						parent
						
							c0f60087c3
						
					
				
				
					commit
					f0951df040
				
			@@ -45,6 +45,12 @@ $ curl -H "Host: whoami.local" localhost
 | 
			
		||||
I'm 5b129ab83266
 | 
			
		||||
```
 | 
			
		||||
 | 
			
		||||
### IPv6 support
 | 
			
		||||
 | 
			
		||||
You can activate the IPv6 support for the nginx-proxy container by passing the value `true` to the `ENABLE_IPV6` environment variable:
 | 
			
		||||
 | 
			
		||||
    $ docker run -d -p 80:80 -e ENABLE_IPV6=true -v /var/run/docker.sock:/tmp/docker.sock:ro jwilder/nginx-proxy
 | 
			
		||||
 | 
			
		||||
### Multiple Ports
 | 
			
		||||
 | 
			
		||||
If your container exposes multiple ports, nginx-proxy will default to the service running on port 80.  If you need to specify a different port, you can set a VIRTUAL_PORT env var to select a different one.  If your container only exposes one port and it has a VIRTUAL_HOST env var set, that port will be selected.
 | 
			
		||||
 
 | 
			
		||||
							
								
								
									
										13
									
								
								nginx.tmpl
									
									
									
									
									
								
							
							
						
						
									
										13
									
								
								nginx.tmpl
									
									
									
									
									
								
							@@ -71,10 +71,13 @@ proxy_set_header X-Forwarded-Port $proxy_x_forwarded_port;
 | 
			
		||||
proxy_set_header Proxy "";
 | 
			
		||||
{{ end }}
 | 
			
		||||
 | 
			
		||||
{{ $enable_ipv6 := eq (or ($.Env.ENABLE_IPV6) "") "true" }}
 | 
			
		||||
server {
 | 
			
		||||
	server_name _; # This is just an invalid value which will never trigger on a real hostname.
 | 
			
		||||
	listen 80;
 | 
			
		||||
	{{ if $enable_ipv6 }}
 | 
			
		||||
	listen [::]:80;
 | 
			
		||||
	{{ end }}
 | 
			
		||||
	access_log /var/log/nginx/access.log vhost;
 | 
			
		||||
	return 503;
 | 
			
		||||
}
 | 
			
		||||
@@ -83,7 +86,9 @@ server {
 | 
			
		||||
server {
 | 
			
		||||
	server_name _; # This is just an invalid value which will never trigger on a real hostname.
 | 
			
		||||
	listen 443 ssl http2;
 | 
			
		||||
	{{ if $enable_ipv6 }}
 | 
			
		||||
	listen [::]:443 ssl http2;
 | 
			
		||||
	{{ end }}
 | 
			
		||||
	access_log /var/log/nginx/access.log vhost;
 | 
			
		||||
	return 503;
 | 
			
		||||
 | 
			
		||||
@@ -151,7 +156,9 @@ upstream {{ $upstream_name }} {
 | 
			
		||||
server {
 | 
			
		||||
	server_name {{ $host }};
 | 
			
		||||
	listen 80 {{ $default_server }};
 | 
			
		||||
	{{ if $enable_ipv6 }}
 | 
			
		||||
	listen [::]:80 {{ $default_server }};
 | 
			
		||||
	{{ end }}
 | 
			
		||||
	access_log /var/log/nginx/access.log vhost;
 | 
			
		||||
	return 301 https://$host$request_uri;
 | 
			
		||||
}
 | 
			
		||||
@@ -160,7 +167,9 @@ server {
 | 
			
		||||
server {
 | 
			
		||||
	server_name {{ $host }};
 | 
			
		||||
	listen 443 ssl http2 {{ $default_server }};
 | 
			
		||||
	{{ if $enable_ipv6 }}
 | 
			
		||||
	listen [::]:443 ssl http2 {{ $default_server }};
 | 
			
		||||
	{{ end }}
 | 
			
		||||
	access_log /var/log/nginx/access.log vhost;
 | 
			
		||||
 | 
			
		||||
	ssl_protocols TLSv1 TLSv1.1 TLSv1.2;
 | 
			
		||||
@@ -214,7 +223,9 @@ server {
 | 
			
		||||
server {
 | 
			
		||||
	server_name {{ $host }};
 | 
			
		||||
	listen 80 {{ $default_server }};
 | 
			
		||||
	{{ if $enable_ipv6 }}
 | 
			
		||||
	listen [::]:80 {{ $default_server }};
 | 
			
		||||
	{{ end }}
 | 
			
		||||
	access_log /var/log/nginx/access.log vhost;
 | 
			
		||||
 | 
			
		||||
	{{ if (exists (printf "/etc/nginx/vhost.d/%s" $host)) }}
 | 
			
		||||
@@ -246,7 +257,9 @@ server {
 | 
			
		||||
server {
 | 
			
		||||
	server_name {{ $host }};
 | 
			
		||||
	listen 443 ssl http2 {{ $default_server }};
 | 
			
		||||
	{{ if $enable_ipv6 }}
 | 
			
		||||
	listen [::]:443 ssl http2 {{ $default_server }};
 | 
			
		||||
	{{ end }}
 | 
			
		||||
	access_log /var/log/nginx/access.log vhost;
 | 
			
		||||
	return 500;
 | 
			
		||||
 | 
			
		||||
 
 | 
			
		||||
		Reference in New Issue
	
	Block a user