nginx配置
server {
listen 80;
server_name 10.10.10.10;
location / {
index index.html;
root /data/cmdb/dist/;
try_files $uri $uri/ /index.html;
}
location ^~ /api/ {
proxy_set_header Host "10.10.10.10";
proxy_pass http://10.10.10.10:8000/;
proxy_set_header X-Real-IP $remote_addr;
proxy_set_header X-Forwarded-For $proxy_add_x_forwarded_for;
}
}
休对故人思故国 且将新火试新茶 诗酒趁年华


浙公网安备 33010602011771号