nginx转发和重写网址

时间:2018-06-05 21:24:32

标签: wordpress nginx

我在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。

为什么我没有被转发到正确的端口,我该如何纠正?

0 个答案:

没有答案