If you’re looking for help, please provide information about your environment. If you delete this template and don’t provide any information, your topic will be automatically closed.
If you aren’t running the latest version of Ghost, the first thing we’ll ask you to do is update to the latest version of Ghost.
How was Ghost installed and configured?
Ghost was Installed on hostinger VPS server, and the ghost is running on URL https://156.67.214.45
but when I try to access the url from the browser getting “This site can’t be reached”
What Node version, database, OS & browser are you using?
Node version: 14.18.1
Database: mysql
OS: ubuntu 20.04
What errors or information do you see in the console?
“This site can’t be reached”
What steps could someone else take to reproduce the issue you’re having?
Try to setup ghost on a VPS server and try to access the hosted URL from any system or browser
Please let me know if I need to do any additional configuration in order to access the hosted URL on VPS server from any other system
Is it because you are accessing an IP - 156.67.214.45 - via HTTPS which requires a Server certificate to be issued to this IP?
HTTPS is usually used when you are reaching your IP via a domain-name, and the server will have an SSL Certificate proving that it really is that domain.
You could try to set-up / reach your server via HTTP - http://156.67.214.45 - though this is not great on the public internet as your http://156.67.214.45/ghost login credentials will be sent over the network in the clear.
You really need to connect your DNS to your IP and then get a certificate issued to your domain-name.
I also note that you have Ghost listening on your public IP… is that really what you want?
Usually you would have nginx listening for HTTP/HTTPS on your public IP and proxy through to a localhost Ghost connection on 127.0.0.1:2368.
You might want to post your nginx config - which is usually in your ./system/files/ site folder. This .conf file shows now nginx is connecting to your Ghost instance.
TLDR; - don’t set it up using an IP - update your DNS first.
The 404-error page showing is not the default NGINX 404 page, so I guess that you have more configured in NGINX.
In fact if I visit your IP I find a WordPress blog configured - so the issue is that you have other NGINX config that is taking precedence over your Ghost configuration.
To do the job properly, you really should get your DNS updated, and then configure and access your new Ghost blog via a proper domain name - e.g. test.mydomain.com
This is how your users will do it, and then NGINX will know to connect test.mydomain.com to your Ghost blog. It also means you can set up HTTPS immediately so your /ghost/ login will be encrypted while it travels over the public internet.
When you are ready to switch from test.mydomain.com to www.mydomain.com you will just need to make a few changes to your config and get an updated SSL Certificate.