mirror of
				https://github.com/NginxProxyManager/nginx-proxy-manager.git
				synced 2025-11-04 01:15:14 +00:00 
			
		
		
		
	
		
			
				
	
	
		
			20 lines
		
	
	
		
			376 B
		
	
	
	
		
			Plaintext
		
	
	
	
	
	
			
		
		
	
	
			20 lines
		
	
	
		
			376 B
		
	
	
	
		
			Plaintext
		
	
	
	
	
	
{% include "_header_comment.conf" %}
 | 
						|
 | 
						|
server {
 | 
						|
  listen 80;
 | 
						|
{% if ipv6 -%}
 | 
						|
  listen [::]:80;
 | 
						|
{% endif %}
 | 
						|
 | 
						|
  server_name {{ domain_names | join: " " }};
 | 
						|
 | 
						|
  access_log /data/logs/letsencrypt-requests_access.log standard;
 | 
						|
  error_log /data/logs/letsencrypt-requests_error.log warn;
 | 
						|
 | 
						|
  include conf.d/include/letsencrypt-acme-challenge.conf;
 | 
						|
 | 
						|
  location / {
 | 
						|
    return 404;
 | 
						|
  }
 | 
						|
}
 |