Hi,
I am currently using the Ghost one-click install on an Ubuntu server. I have the assigned IP as my private blog URL. Is it possible to upload a folder to the IP to use as a subdomain or a sub-directory? Meaning, if my IP is http://xxx.xxx.xxx.xxx/, is it possible to have a folder called ‘abcd’ with its own index.html and custom css, so that people can navigate to http://xxx.xxx.xxx.xxx/abcd and view it as a separate site? If yes, where do I upload this folder?
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!
Hello,
You should be able to do this with a little modification of the /etc/nginx/sites-enabled/ghost file.
So assuming you wanted to have the folder called abcd then you could do:
location /abcd/ {
root /usr/share/nginx/html/;
index index.html;
}
The files would be uploaded to /usr/share/nginx/html/testing/
Keep in mind though, that you can never make anything with ghost with the name abcd as it will just get routed to the new site instead of rendered by ghost.
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.