default.conf 575 B

123456789101112131415161718192021222324252627
  1. server {
  2. listen 80;
  3. server_name localhost;
  4. charset utf-8;
  5. location /trade {
  6. alias /usr/share/nginx/html;
  7. index index.html;
  8. try_files $uri $uri/ $uri/index.html;
  9. }
  10. location /make {
  11. alias /usr/share/nginx/html;
  12. index index.html;
  13. try_files $uri $uri/ $uri/index.html;
  14. }
  15. #error_page 404 /404.html;
  16. # redirect server error pages to the static page /50x.html
  17. #
  18. error_page 500 502 503 504 /50x.html;
  19. location = /50x.html {
  20. root html;
  21. }
  22. }