Hello I’m trying to setup ghost on my new droplet in a sub directory but cant get it to work for the life of. I’ve followed the these tutorials: http://www.allaboutghost.com/how-to-install-ghost-in-a-subdirectory/ http://www.allaboutghost.com/how-to-proxy-port-80-to-2368-for-ghost-with-apache/
I basically want my main website to be srachit.com (which is working) and then a link to srachit.com/blog where my ghost website will be present (currently going to this link just displays all the files in that directory)
Any suggestions on what may be wrong?
This textbox defaults to using Markdown to format your answer.
You can type !ref in this text area to quickly search our full set of tutorials, documentation & marketplace offerings and insert the link!
ProxyPass and ProxyPassReverse take a relative URI path, not the actual filesystem path to your website.
Replace
ProxyPass /var/www/srachit.com/public_html/blog http://104.236.167.29:2368/blog
ProxyPassReverse /var/www/srachit.com/public_html/blog http:/104.236.167.29:2368/blog
with
ProxyPass /blog http://104.236.167.29:2368/
ProxyPassReverse /blog http:/104.236.167.29:2368/
and restart Apache:
sudo service apache2 restart
You might have to edit Ghost’s configuration and set the site url to http://srachit.com/blog as well.
Get paid to write technical tutorials and select a tech-focused charity to receive a matching donation.
Full documentation for every DigitalOcean product.
The Wave has everything you need to know about building a business, from raising funding to marketing your product.
Stay up to date by signing up for DigitalOcean’s Infrastructure as a Newsletter.
New accounts only. By submitting your email you agree to our Privacy Policy
Scale up as you grow — whether you're running one virtual machine or ten thousand.
Sign up and get $200 in credit for your first 60 days with DigitalOcean.*
*This promotional offer applies to new accounts only.