17 lines
		
	
	
		
			378 B
		
	
	
	
		
			Plaintext
		
	
	
	
	
	
			
		
		
	
	
			17 lines
		
	
	
		
			378 B
		
	
	
	
		
			Plaintext
		
	
	
	
	
	
server {
 | 
						|
    listen       ${NGINX_PORT};
 | 
						|
    listen  [::]:${NGINX_PORT};
 | 
						|
    server_name  ${NGINX_HOST};
 | 
						|
 | 
						|
    #access_log  /var/log/nginx/host.access.log  main;
 | 
						|
 | 
						|
    location / {
 | 
						|
        root   /usr/share/nginx/html;
 | 
						|
        index  index.html index.htm;
 | 
						|
    }
 | 
						|
 | 
						|
    error_page   500 502 503 504  /50x.html;
 | 
						|
    location = /50x.html {
 | 
						|
        root   /usr/share/nginx/html;
 | 
						|
    }
 | 
						|
} |