ฉันมีบล็อก WordPress ซึ่งให้บริการโดย apache2 (บนพอร์ต 80) และ nginx (บนพอร์ต 8080) บน Ubuntu 12.04 ตอนนี้เมื่อใดก็ตามที่ไคลเอนต์เชื่อมต่อผ่านพอร์ต 80 ทั้งหมดเป็น dory hunky แต่เมื่อไคลเอ็นต์เชื่อมต่อกับ 8080 เพื่อดูบล็อกเดียวกันการเชื่อมต่อจะถูกเปลี่ยนเส้นทางไปยัง apache ทำไมสิ่งนี้จึงเกิดขึ้น ฉันค้นหาไปรอบ ๆ และพบว่านี่เป็นข้อ จำกัด ของ Wordpress ซึ่งจะเปลี่ยนเส้นทางการเชื่อมต่อทั้งหมดไปยัง URL ของไซต์ที่ตั้งค่าในแผงควบคุม (ซึ่งเป็นพอร์ต 80 ตามค่าเริ่มต้น)
มีวิธีแก้ไขไหม? ว่าการเชื่อมต่อกับพอร์ต 8080 จะให้บริการโดย nginx มากกว่า apache
เนื้อหาของ / etc / nginx / sites-enabled / wordpress
server {
listen 8080;
root /var/www;
index index.php index.html index.htm;
server_name abc.com;
location / {
try_files $uri $uri/ /index.php?q=$uri&$args;
}
location /doc/ {
alias /usr/share/doc/;
autoindex on;
allow 127.0.0.1;
deny all;
}
error_page 404 /404.html;
error_page 500 502 503 504 /50x.html;
location = /50x.html {
root /usr/share/nginx/www;
}
location ~ \.php$ {
try_files $uri =404;
fastcgi_pass unix:/var/run/php5-fpm.sock;
fastcgi_index index.php;
include fastcgi_params;
fastcgi_param SERVER_PORT 8080;
port_in_redirect off;
}
ความช่วยเหลือใด ๆ ที่ชื่นชม