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

From GPU-powered inference and Kubernetes to managed databases and storage, get everything you need to build, scale, and deploy intelligent applications.

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.
Hey Andrew,
Yes, I did create the directory, and there is an index.html. I didn’t know that I had to execute the command service ghost restart, lol just found about it. Now, I can go back and forth within the blog, but I’m still unable to load my index.html from /urs/share/nginx/davdh2.
as for the config.js do you mean like this? Thank you.
// ### Production
// When running Ghost in the wild, use the production environment
// Configure your URL and mail settings here
production: {
url: ‘http://blog.davedh2.com’,
mail: {},
database: {
client: ‘sqlite3’,
connection: {
filename: path.join(__dirname, ‘/content/data/ghost.db’)
},
debug: false
},
server: {
// Host to be passed to node’s net.Server#listen()
host: ‘127.0.0.1’,
// Port to be passed to node’s net.Server#listen(), for iisnode set this to process.env.PORT
port: ‘2368’
}
},
production: {
url: 'http://davedh2.com',
mail: {},
database: {
client: 'sqlite3',
connection: {
filename: path.join(__dirname, '/content/data/ghost.db')
},
debug: false
},
server: {
// Host to be passed to node's `net.Server#listen()`
host: '127.0.0.1',
// Port to be passed to node's `net.Server#listen()`, for iisnode set this to `process.env.PORT`
port: '2368'
}
},
// **Developers only need to edit below here**
That mostly looks right to me. Except if you want the Ghost blog on the subdomain, you should set it in config.js as well:
production: {
url: 'http://davedh2.com',
Does the directory /usr/share/nginx/davedh2 actually exist? Is there an index.html file there?