I have Ghost 0.4.2 set up on http://www.thepapermail.com. However, when you enter http://thepapermail.com, you are still presented with the same general page. None of my links work with that, though, because I have Ghost configured to use www before the URL.
I tried adding a cname with www pointing to @, but that didn’t work. Then I added an A record with www pointing to my server’s IP address. That didn’t work either.
Does anyone know of a way to force prepend www to the domain?
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!
You can force a redirect to www by editing the nginx configuration like so: <br> <br><pre> <br>server { <br> listen 80; <br> server_name thepapermail.com; <br> return 301 http://www.thepapermail.com$request_uri; <br>} <br>server { <br> listen 80; <br> server_name www.thepapermail.com ; <br> <br> client_max_body_size 10M; <br> <br> location / { <br> proxy_pass http://localhost:2368/; <br> proxy_set_header Host $host; <br> proxy_buffering off; <br> } <br>} <br></pre> <br> <br>This is found in: <br> <br><pre> <br>/etc/nginx/conf.d/default.conf <br></pre> <br> <br>Let us know how it goes!
Worked perfect, Andrew. One more thing: should I remove any of the records I added in DNS settings?
Glad it worked! <br> <br>No, you should keep DNS records pointing both www.thepapermail.com and thepapermail.com to that IP address.
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.