hi I use droplet as an ubuntu machine I try to install ghost. everything goes well
I installed node.js, sqlite and ghost. My domain emrekiyak.com DNS goes to my digitalocean servers. And now ghost is running …
But still I want to go my domain emrekiyak.com a default plesk panel page shown. I use a windows server before but last night I changed the DNS settings on my domain panel which I bought and I check domain settings now is updated as digital ocean servers.
"Ghost is running and Listening on 127.0.0.1:2368 url configured as : http://my-ghost-blog.com "
what should I do now ?
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.
emrekiyak.com is not found on our DNS servers, check out <a href=“https://www.digitalocean.com/community/articles/how-to-set-up-a-host-name-with-digitalocean”>https://www.digitalocean.com/community/articles/how-to-set-up-a-host-name-with-digitalocean</a>
and my ghost file which is in sites-available folder is like that <br> <br>server { <br> listen 0.0.0.0:80; <br> server_name emrekiyak.com; <br> access_log /var/log/nginx/emrekiyak.com.log; <br> <br> location / { <br> proxy_set_header X-Real-IP $remote_addr; <br> proxy_set_header HOST $http_host; <br> proxy_set_header X-NginX-Proxy true; <br> <br> proxy_pass http://127.0.0.1:2368; <br> proxy_redirect off; <br> } <br>}
by the way my ghost folder is in Home folder.