nginx.conf (249B)
1 events { } 2 http { 3 include /etc/nginx/mime.types; 4 include /etc/nginx/conf.d/*.conf; 5 server_tokens off; 6 server { 7 listen 80; 8 listen [::]:80; 9 root /usr/share/nginx/html; 10 location / { 11 try_files $uri $uri/ =404; 12 } 13 } 14 } 15