我有一个wordpress博客,由Ubuntu 12.04上的apache2(端口80)和nginx(端口8080)提供服务。现在,每当客户端通过端口80连接时,一切都很好,但当客户端连接到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;
}
非常感谢您的帮助。