123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778 |
- 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;
- #gzip on;
- 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
-
- upstream info_admin {
- server 172.17.0.1:30101;
- }
- upstream big_screen {
- server 172.17.0.1:30301;
- }
- server{
- listen 80;
- listen [::]:80;
- server_name localhost;
- location /collection/ {
- proxy_pass http://info_admin/;
- }
- location /bigScreen/ {
- proxy_pass http://big_screen/;
- }
-
- location /infoAdmin/ {
- proxy_pass http://172.17.0.1:60001/;
- }
-
- location /vueScreen/ {
- proxy_pass http://172.17.0.1:60003/;
- }
-
- location / {
- root /usr/share/nginx/html;
- index index.html index.html;
- try_files $uri $uri /index.html;
- }
- }
- }
|