Report this

What is the reason for this report?

Uploading a sub-directory to Ghost IP

Posted on January 13, 2016

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!

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.

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.

The developer cloud

Scale up as you grow — whether you're running one virtual machine or ten thousand.

Get started for free

Sign up and get $200 in credit for your first 60 days with DigitalOcean.*

*This promotional offer applies to new accounts only.