default.conf 275 B

1234567891011121314
  1. server {
  2. listen 8080;
  3. server_name localhost;
  4. location / {
  5. root /usr/share/nginx/html;
  6. try_files $uri /index.html;
  7. }
  8. error_page 500 502 503 504 /50x.html;
  9. location = /50x.html {
  10. root /usr/share/nginx/html;
  11. }
  12. }