nginx.conf 1.0 KB

1234567891011121314151617181920212223242526272829303132333435363738394041
  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:8080;
  20. }
  21. location /page {
  22. proxy_pass http://crowd_user:8081;
  23. }
  24. location ~ ^/(js|vendor|css|fonts|images)/.*$ {
  25. proxy_pass http://crowd_user:8081;
  26. }
  27. #error_page 404 /404.html;
  28. # redirect server error pages to the static page /50x.html
  29. #
  30. error_page 500 502 503 504 /50x.html;
  31. location = /50x.html {
  32. root html;
  33. }
  34. }