我在localhost:8888/website
上使用MAMP运行一个简单的wordpress网站。
我希望nginx将localhost:80
上的所有流量转发到localhost:8888/website
我的nginx.conf文件如下所示:
http {
map $http_upgrade $connection_upgrade{
default upgrade;
'' close;
}
server {
listen 80;
location / {
rewrite / /website break;
proxy_pass http://localhost:8888/;
proxy_set_header Upgrade $http_upgrade;
proxy_set_header Connection $connection_upgrade;
}
} }
这导致localhost/website/
,但我想转发到localhost:8888 / website。
为什么我没有被转发到正确的端口,我该如何纠正?