1234567891011121314151617181920212223242526272829303132333435363738394041 |
- server {
- listen 80;
- server_name 127.0.0.1;
- root /usr/share/nginx/html;
- #charset koi8-r;
- client_max_body_size 100m;
- #access_log logs/host.access.log main;
- # 开启代理缓冲区
- proxy_buffering on;
- # 响应头的缓冲区
- proxy_buffer_size 128k;
- # 网页内容缓冲区的个数为4,单个大小为1M
- proxy_buffers 8 1M;
- proxy_busy_buffers_size 2M;
- location / {
- root /usr/share/nginx/html;
- }
- location /api {
- proxy_pass http://crowd_backend:8080;
- }
- location /page {
- proxy_pass http://crowd_user:8081;
- }
- location ~ ^/(js|vendor|css|fonts|images)/.*$ {
- proxy_pass http://crowd_user:8081;
- }
- #error_page 404 /404.html;
- # redirect server error pages to the static page /50x.html
- #
- error_page 500 502 503 504 /50x.html;
- location = /50x.html {
- root html;
- }
- }
|