nginx.conf 368 B

123456789101112131415161718
  1. server {
  2. listen 80;
  3. access_log /var/log/nginx/access.log;
  4. error_log /var/log/nginx/error.log;
  5. location / {
  6. root /usr/share/nginx/html;
  7. index index.html index.htm;
  8. try_files $uri $uri/ /index.html;
  9. }
  10. error_page 500 502 503 504 /50x.html;
  11. location = /50x.html {
  12. root /usr/share/nginx/html;
  13. }
  14. }