Question
Ghost + Wordpress + Nginx on Ubuntu Droplet
These answers are provided by our Community. If you find them useful, show some love by clicking the heart. If you run into issues leave a comment, or add your own answer to help others.
×These answers are provided by our Community. If you find them useful, show some love by clicking the heart. If you run into issues leave a comment, or add your own answer to help others.
×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; } }The port used for the proxy_pass should match the "port" setting in
/var/www/ghost-blog-domain.com/ghost/config.js
Let us know how it goes!Perfect! My Ghost site’s Nginx config (sites-available file) was essentially a duplicate of the Wordpress site’s with the only changes being the domain name and the directory the site was stored in.
Your config file suggestion works perfectly! Thank you for your help :)