我们有一个 Nginx 监听端口80
并443
为我们的主要网站提供服务。假设它的名称是 demosite.com。
它在 AWS EC2 实例上运行,流量来自 ELB。
我需要在同一台机器上部署 WordPress,这样它就可以成为主站点的一部分,并且可以通过 demosite.com/blog 访问。
我们决定将 WordPress 配置为在单独的端口 8088( HTTP,非 SSL)上充当 Vhost 是有原因的。
在 ELB 上,我创建了一条规则:
IF Path is /blog/
THEN
Forward to Demosite-WP-blog
Demosite-WP-blog 是指向我的机器端口 8088 的目标组。
WordPress Nginx 虚拟主机配置:
server {
listen 8088 default_server;
access_log /var/log/nginx/blog.access.log;
error_log /var/log/nginx/blog.error.log;
server_name demosite.com www.demosite.com;
root /var/www/wordpress;
include /etc/nginx/nginx-wp-common.conf;
}
/etc/nginx/nginx-wp-common.conf :
charset utf-8;
location / {
index index.php index.html;
try_files $uri $uri/ /index.php?$args;
}
error_page 404 /404.html;
error_page 500 502 503 504 /50x.html;
location = /50x.html {
root /usr/share/nginx/html;
}
location ~* /(?:uploads|files)/.*\.php$ {
deny all;
}
location ~ /\. {
access_log off;
log_not_found off;
deny all;
}
location ~ \.php$ {
try_files $uri =404;
include /etc/nginx/fastcgi_params;
fastcgi_read_timeout 3600s;
fastcgi_param SCRIPT_FILENAME $document_root$fastcgi_script_name;
fastcgi_pass unix:/run/php/php7.2-fpm.sock;
fastcgi_split_path_info ^(/blog)(/.*)$;
fastcgi_index index.php;
}
# this was added later
location /blog {
root /var/www/wordpress;
index index.php index.html index.htm;
rewrite /wp-admin$ $scheme://$host$uri/index.php?q=$1 permanent;
try_files $uri $uri/ @blog;
}
location @blog {
rewrite ^/blog(.*) /blog/index.php?q=$1;
}
WordPress 最初被设置为一个单独的站点,通过 web GUI 设置过程,以确保它正常工作,等等。即我已经配置了一个临时子域名 wpblog.demosite.com,设置它 - 它正在工作美好的。然后我将它重新配置为主站点的一部分。这是我为此目的在其顶部添加
的相关部分:/var/www/wordpress/wp-config.php
define( 'WP_SITEURL', 'https://demosite.com' );
define( 'WP_HOME', 'https://demosite.com/blog' );
if ($_SERVER['HTTP_X_FORWARDED_PROTO'] === 'https')
$_SERVER['HTTPS'] = 'on';
if (isset($_SERVER['HTTP_X_FORWARDED_HOST'])) {
$_SERVER['HTTP_HOST'] = $_SERVER['HTTP_X_FORWARDED_HOST'];
}
内容路径为:
/var/www/wordpress
total 204
drwxr-xr-x 5 root www-data 4096 Sep 26 23:15 .
drwxr-xr-x 8 root root 4096 Sep 26 00:47 ..
-rw-r--r-- 1 root www-data 418 Sep 25 2013 index.php
-rw-r--r-- 1 root www-data 19935 Jan 6 2018 license.txt
-rw-r--r-- 1 root www-data 7415 Mar 18 2018 readme.html
-rw-r--r-- 1 root www-data 5458 May 1 22:10 wp-activate.php
drwxr-xr-x 9 root www-data 4096 Sep 18 22:00 wp-admin
-rw-r--r-- 1 root www-data 364 Dec 19 2015 wp-blog-header.php
-rw-r--r-- 1 root www-data 1889 May 2 22:11 wp-comments-post.php
-rw-r----- 1 root www-data 3633 Sep 26 23:01 wp-config.php
-rw-r--r-- 1 root www-data 2853 Dec 16 2015 wp-config-sample.php
drwxr-xr-x 5 root www-data 4096 Sep 26 00:26 wp-content
-rw-r--r-- 1 root www-data 3669 Aug 20 2017 wp-cron.php
drwxr-xr-x 18 root www-data 12288 Sep 18 22:00 wp-includes
-rw-r--r-- 1 root www-data 2422 Nov 21 2016 wp-links-opml.php
-rw-r--r-- 1 root www-data 3306 Aug 22 2017 wp-load.php
-rw-r--r-- 1 root www-data 37794 Jul 16 14:14 wp-login.php
-rw-r--r-- 1 root www-data 8048 Jan 11 2017 wp-mail.php
-rw-r--r-- 1 root www-data 16246 Oct 4 2017 wp-settings.php
-rw-r--r-- 1 root www-data 30091 Apr 29 23:10 wp-signup.php
-rw-r--r-- 1 root www-data 4620 Oct 23 2017 wp-trackback.php
-rw-r--r-- 1 root www-data 3065 Aug 31 2016 xmlrpc.php
现在,当我尝试打开时https://demosite.com/blog/
,我的 WordPress 主页面已损坏:没有 CSS、没有图像、默认字体、链接已损坏。
我做错了什么,如何设置它正常工作?