我有3个Wordpress网站(2个客户一个我的) 我把它们放在数字海洋的液滴中。
我在不同的小滴上有一个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;
}
}