123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475 |
- user nginx;
- worker_processes auto;
- worker_rlimit_nofile 65535;
- error_log /var/log/nginx/error.log notice;
- pid /var/run/nginx.pid;
- events {
- worker_connections 65535;
- }
- http {
- include /etc/nginx/mime.types;
- default_type application/octet-stream;
- log_format main '$remote_addr - $remote_user [$time_local] "$request" '
- '$status $body_bytes_sent "$http_referer" '
- '"$http_user_agent" "$http_x_forwarded_for"';
- access_log /var/log/nginx/access.log main;
- sendfile on;
- #tcp_nopush on;
- keepalive_timeout 65;
- client_max_body_size 15m;
- server{
- listen 80;
- listen [::]:80;
- server_name localhost;
- location /prod-api/ {
- proxy_pass http://172.17.0.1:9090/;
- }
- location /uploadPath/ {
- proxy_pass http://172.17.0.1:9090/file/uploadPath/;
- }
- location /mzylfwobs/ {
- proxy_pass http://172.17.0.1:9090/file/mzylfwobs/;
- }
- location /getxflrinfo {
- proxy_pass http://121.36.73.159:8090/getxflrinfo;
- }
- location /getxflrdata {
- proxy_pass http://121.36.73.159:8090/getxflrdata;
- }
- location / {
- root /usr/share/nginx/html;
- index index.html index.html;
- try_files $uri $uri /index.html;
- }
- location /jmgc {
- root /usr/share/nginx/html;
- try_files $uri $uri/ /jmgc/index.html;
- index index.html index.htm;
- }
- }
- gzip on;
- gzip_http_version 1.0;
- gzip_static on;
- gzip_min_length 1k;
- gzip_buffers 4 16k;
- #gzip_http_version 1.1;
- gzip_comp_level 5; # 压缩级别
- # 要压缩的mine类型
- gzip_types text/plain application/javascript application/x-javascript text/javascript text/css application/xml application/xml+rss image/jpeg image/gif image/png image/svg+xml;
- gzip_vary off;
- gzip_proxied expired no-cache no-store private auth;
- gzip_disable "MSIE [1-6]\."; # IE6不支持gzip
- }
|