
(图片来源网络,侵删)
#user nobody; worker_processes 1; #error_log logs/error.log; #error_log logs/error.log notice; #error_log logs/error.log info; #pid logs/nginx.pid; events { worker_connections 1024; } http { 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 logs/access.log main; sendfile on; #tcp_nopush on; #keepalive_timeout 0; keepalive_timeout 65; #gzip on; server { listen 80; server_name localhost; #charset koi8-r; #access_log logs/host.access.log main; location / { root /opt/server-ui/doctor; # try_files $uri $uri/ /index.html; index index.html index.htm; } # 设置管理后台 location /doctoradmin/ { alias /opt/server-ui/doctor; index index.html; } # 文件 location /file/ { alias /home/file/; } # 设置后端接口前缀 location /prod-api/ { proxy_set_header Host $host; proxy_set_header X-Forwarded-For $remote_addr; proxy_pass http://117.72.17.9:6680/; proxy_send_timeout 300; proxy_read_timeout 300; proxy_connect_timeout 300; } #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; } } server { listen 8080; server_name localhost; # 设置管理后台 location / { root /opt/server-ui/doctoradmin; try_files $uri $uri/ /index.html; index index.html; } # 设置后端接口前缀 location /prod-api/ { proxy_set_header Host $host; proxy_set_header X-Forwarded-For $remote_addr; proxy_pass http://117.72.17.9:6680/; proxy_send_timeout 300; proxy_read_timeout 300; proxy_connect_timeout 300; } } }

(图片来源网络,侵删)