我正在为网站设置nginx,我希望它能够路由到3个位置 - 主要前端服务器,api服务器和wordpress博客服务器。我可以让它为前端服务器和wordpress工作,但上游api服务器在通过前端访问API时总是提供404。 wordpress正在端口8080
上运行,而2个NodeJS服务器正在8015
& 8016
。在mysite.com
上点击8015
前端服务器会显示UI,但在端口8016
上调用登录API时会抛出404错误。在将网址重写为mysite.com/blog
mysite.com:8080
会显示Worpress博客
给出了nginx配置:
upstream backend {
server <IP>:8016
}
server {
listen 80;
server_name mysite.com;
location / {
root /code/public;
index index.html
try_files $uri $uri/ /index.html;
}
location /api/{
proxy_set_header Host $http_host;
proxy_pass http://backend/;
}
location /blog {
root /var/www/html;
index index.php index.html index.htm;
try_files $uri $uri/ /index.php;
}
location ~\.php$ {
proxy_set_header X-Real-IP $remote_addr;
proxy_set_header X-Forwarded-For $remote_addr;
proxy_set_header Host $host;
proxy_pass http://<IP>:8080;
}
location~/\.ht {
deny all;
}
}
这里有什么问题?
答案 0 :(得分:1)
您应删除尾部斜杠,因为/api/
对于您的Node实例而言/api
不同:
location /api {
proxy_set_header Host $http_host;
proxy_pass http://backend/;
}
另请注意:
如果前缀字符串以斜杠字符结尾定义location,并且请求由proxy_pass,fastcgi_pass,uwsgi_pass,scgi_pass或memcached_pass之一处理,则响应URI等于的请求对于此字符串,但没有尾部斜杠,带有代码301的永久重定向将返回到请求的URI,并附加斜杠。