目前我在 192.168.2.1:8080 上运行 wordpress
Nginx 监听 80 端口
我想将端口 8080 上的所有 http 请求“http://192.168.2.1:8080”重定向到端口 80“http://192.168.2.1”
我当前的 nginx 配置却相反:“http://192.168.2.1”指向“http://192.168.2.1:8080”
server {
listen 80;
server_name 192.168.2.1;
location / {
proxy_pass http://192.168.2.1:8080/;
}
我该怎么做?
附言:我确实尝试过所有之前的帖子:/
答案1
也许有类似的配置
server {
listen 8080;
server_name 192.168.2.1;
location / {
proxy_pass http://192.168.2.1:80/;
}
Listen 是你想要 nginx 接收连接的地方,我们可以猜测,proxy_pass 是你想要它们去的地方