目前我在 192.168.2.1:8080 上執行 WordPress
Nginx 監聽 80 端口
我想將連接埠 8080“http://192.168.2.1:8080”上的所有 http 請求重定向到連接埠 80“http://192.168.2.1”
我目前的 nginx conf 執行相反的操作:“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/;
}
我該怎麼做?
PS:我真的嘗試過以前的所有線程:/
答案1
也許有這樣的配置
server {
listen 8080;
server_name 192.168.2.1;
location / {
proxy_pass http://192.168.2.1:80/;
}
Listen 是您希望 nginx 接收連線的地方,我們可以猜測 proxy_pass 是您希望它們去往的地方