nginx_parking.conf 367 B

1234567891011121314151617181920
  1. server {
  2. listen 80;
  3. server_name _;
  4. location / {
  5. root /usr/share/nginx/html;
  6. index index.html index.htm;
  7. try_files $uri $uri/ router;
  8. }
  9. location router {
  10. rewrite ^.*$ /index.html last;
  11. }
  12. error_page 500 502 503 504 /50x.html;
  13. location = /50x.html {
  14. root /usr/share/nginx/html;
  15. }
  16. }