Re: [mezzanine-users] Domains without "www" not working after deploy.

2016-01-20 Thread Eduardo Rivas
Your production database and static files are not affected by fab deploy. It simply uploads your project's code and configuration files for nginx and gunicorn (broadly speaking). -- You received this message because you are subscribed to the Google Groups "Mezzanine Users" group. To unsubscribe

Re: [mezzanine-users] Domains without "www" not working after deploy.

2016-01-20 Thread Klerp
Thanks. Yes, but if I had done fab deploy again, I would have lost all database built so far. I am yet to learn backup and restoring databases. -- You received this message because you are subscribed to the Google Groups "Mezzanine Users" group. To unsubscribe from this group and stop receivin

Re: [mezzanine-users] Domains without "www" not working after deploy.

2016-01-20 Thread Eduardo Rivas
Yeah, the fabfile will do that for you if you add the www and non www versions of the domain to DOMAINS in the FABRIC dictionary, and then fab deploy again. Anyways, glad you got it working. -- You received this message because you are subscribed to the Google Groups "Mezzanine Users" group. To

Re: [mezzanine-users] Domains without "www" not working after deploy.

2016-01-20 Thread Klerp
I resolved it. Needed to include www in /etc/nginx/sites-enabled/mysite.conf under ...snip... ## Deny illegal Host headers if ($host !~* ^(mydomain.org|www.mydomain.org)$ ) { return 444; } ...snip... -- You received this message because you are subscribed to the

Re: [mezzanine-users] Domains without "www" not working after deploy.

2016-01-19 Thread Klerp
Typo: Should be Updated /etc/nginx/sites-enabled/mysite.conf with - server_name www.mysite. org mysite.org; and sudo restart -- You received this message because you are subscribed to the Google Groups "Mezzanine Users" group. To unsubscribe from this group and stop rec

Re: [mezzanine-users] Domains without "www" not working after deploy.

2016-01-19 Thread Klerp
Hello, I used only mysite.org with fabric. ALLOWED_HOSTS = ["mysite.org"] Now, I want to include www.mysite.org as well. I did the following. 1. Add CNAME record - www @ at digitalocean (where I host) 2. Add www.mysite.org to allowed hosts in localsettings, ALLOWED_HOSTS = ["mysite.org","www

Re: [mezzanine-users] Domains without "www" not working after deploy.

2015-05-19 Thread Stephen McDonald
I'd suggest having www never touch the Django app, and redirect all its requests via nginx: server { listen 80; server_name www.foo.com; rewrite ^(.*) http://foo.com$1 permanent; } On Mon, May 18, 2015 at 11:26 AM, taedori wrote: > Thanks for reply > Actual address is > > www.taed

Re: [mezzanine-users] Domains without "www" not working after deploy.

2015-05-18 Thread taedori
Thanks for reply Actual address is www.taedori-staging.com. and can you try taedori-staging.com. and I set up DNS A Record. www and @ for my server ip address. -- You received this message because you are subscribed to the Google Groups "Mezzanine Users" group. To unsubscribe from this grou

[mezzanine-users] Domains without "www" not working after deploy.

2015-05-18 Thread taedori
Thanks for mezzanine team for easy deploy using fab all and fab deploy :) Question. my website is working with full address with www (www.example.com) but not working(page not found) without www (example.com) I added DOMAINS : ["www.example.com", "example.com"] in Fabric settings and also did A

Re: [mezzanine-users] Domains without "www" not working after deploy.

2015-05-18 Thread Eduardo Rivas
Hello, taedori. Do you have any more details one what exactly is failing? What do you see when you visit the site without www? From what you've explained, it sounds like everything is setup correctly. Are you sure your DNS settings point both domain variants to the server were you're deploying