default.conf 608 B

12345678910111213141516171819202122232425262728293031
  1. upstream static_resource {
  2. server localhost:80;
  3. }
  4. server {
  5. listen 80;
  6. server_name localhost;
  7. location / {
  8. root /usr/share/nginx/html;
  9. index index.html;
  10. access_log off;
  11. }
  12. error_page 405 =200 @405;
  13. location @405 {
  14. root /usr/share/nginx/html;
  15. proxy_method GET;
  16. proxy_pass http://static_resource$request_uri;
  17. }
  18. location = /50x.html {
  19. root /usr/share/nginx/html;
  20. }
  21. location /favicon.ico {
  22. root /usr/share/nginx/html;
  23. log_not_found off;
  24. access_log off;
  25. }
  26. }