server {
listen 90; server_name localhost;#charset koi8-r;
#access_log logs/host.access.log main;
proxy_set_header Host $host:$server_port; //需要加上,解决运行时端口丢失问题 location / { root html; index index.html index.htm; } // 将 蓝色的 丢进去 改一下对应的
//js内ajax请求的ip地址 如 localhost:8080/api/ 改为 /apis/api
location /apis { rewrite ^.+apis/?(.*)$ /$1 break; include uwsgi_params; proxy_pass http://localhost:8080; // 需要调用的后台ip地址 }}