nginx.conf 587 B

12345678910111213141516171819202122232425
  1. server {
  2. listen 80;
  3. server_name crowd.test.mooctest.net;
  4. root /usr/share/nginx/html;
  5. #charset koi8-r;
  6. #access_log logs/host.access.log main;
  7. location / {
  8. root /usr/share/nginx/html;
  9. }
  10. location /api {
  11. proxy_pass http://backend:8080;
  12. }
  13. #error_page 404 /404.html;
  14. # redirect server error pages to the static page /50x.html
  15. #
  16. error_page 500 502 503 504 /50x.html;
  17. location = /50x.html {
  18. root html;
  19. }
  20. }