nginx.conf 290 B

1234567891011121314151617
  1. server {
  2. listen 80;
  3. server_name b2b2c-multishop.mall4j.com;
  4. location / {
  5. root /usr/share/nginx/html/dist;
  6. }
  7. error_page 404 /404.html;
  8. location = /404-light.html {
  9. }
  10. error_page 500 502 503 504 /50x.html;
  11. location = /50x.html {
  12. }
  13. }