default 963 B

1234567891011121314151617181920212223242526272829303132333435363738
  1. server {
  2. listen 80;
  3. server_name 127.0.0.1;
  4. root /usr/share/nginx/html;
  5. #charset koi8-r;
  6. client_max_body_size 100m;
  7. #access_log logs/host.access.log main;
  8. # 开启代理缓冲区
  9. proxy_buffering on;
  10. # 响应头的缓冲区
  11. proxy_buffer_size 128k;
  12. # 网页内容缓冲区的个数为4,单个大小为1M
  13. proxy_buffers 8 1M;
  14. proxy_busy_buffers_size 2M;
  15. location / {
  16. root /usr/share/nginx/html;
  17. }
  18. location /api {
  19. proxy_pass http://crowd-backend-api;
  20. }
  21. location /var {
  22. root /;
  23. index index.html index.htm;
  24. }
  25. #error_page 404 /404.html;
  26. # redirect server error pages to the static page /50x.html
  27. #
  28. error_page 500 502 503 504 /50x.html;
  29. location = /50x.html {
  30. root html;
  31. }
  32. }