标签:live try_files location nginx include tcp out files efault
user root; worker_processes 1; error_log /var/log/nginx/error.log warn; pid /var/run/nginx.pid; events { #use epoll; worker_connections 65535; } http { #include /etc/nginx/mime.types; include 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; #include /etc/nginx/conf.d/*.conf; #client_max_body_size 2048m; #client_body_buffer_size 1024m; #client_header_buffer_size 1024m; server { listen 80; server_name 192.168.3.220; location / { root /opt/mmfw/dist; try_files $uri $uri/ /index.html; index index.html index.htm; } location /prod-api/ { proxy_set_header Host $http_host; proxy_set_header X-Real-IP $remote_addr; proxy_set_header REMOTE-HOST $remote_addr; proxy_set_header X-Forwarded-For $proxy_add_x_forwarded_for; proxy_pass http://192.168.3.220:8081/; proxy_connect_timeout 120; } error_page 500 502 503 504 /50x.html; location = /50x.html { root html; } } }
标签:live try_files location nginx include tcp out files efault
原文地址:https://www.cnblogs.com/flafly/p/14260880.html