我有 3 个 Wordpress 网站(一个我的 2 个客户)我将它们放在 Digital Ocean 上的一个小滴中。
我在不同的液滴上有 1 个 Ghost 网站
我正在考虑将 wordpress 站点移动到 ghost droplet,这样我就可以将所有内容整合到一台服务器上。我正在将 wordpress 站点移动到 ghost 服务器。
然后一个用户告诉我我也必须这样做- nginx fastcgi php
最后整个过程似乎脱节了,我在 NGINX 配置的堆栈溢出中发现了这段代码,现在我不知道从哪里开始。我应该从哪里开始?
server {
listen 80 default_server;
root /var/www/html;
index index.php index.html index.htm;
server_name wordpress-blog-doamin.com;
location / {
# try_files $uri $uri/ =404;
try_files $uri $uri/ /index.php?q=$uri&$args;
}
error_page 404 /404.html;
error_page 500 502 503 504 /50x.html;
location = /50x.html {
root /usr/share/nginx/html;
}
location ~ \.php$ {
try_files $uri =404;
fastcgi_split_path_info ^(.+\.php)(/.+)$;
fastcgi_pass unix:/var/run/php5-fpm.sock;
fastcgi_index index.php;
include fastcgi_params;
}
}
#
server {
listen 80;
server_name ghost-blog-domain.com ;
client_max_body_size 10M;
location / {
proxy_pass http://localhost:2368/;
proxy_set_header Host $host;
proxy_buffering off;
}
}