Skip to content

Commit

Permalink
Update nginx conf for 3.1's fabfile.
Browse files Browse the repository at this point in the history
  • Loading branch information
stephenmcd committed Apr 25, 2014
1 parent 11e2fdc commit 4b077d2
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions deploy/nginx.conf
Expand Up @@ -6,14 +6,14 @@ upstream %(proj_name)s {
server {
listen 80;
server_name mezzaninecms.com;
rewrite ^(.*) http://%(live_host)s$1 permanent;
rewrite ^(.*) http://%(domains_nginx)s$1 permanent;
}

server {

listen 80;
listen 443;
server_name %(live_host)s;
server_name %(domains_nginx)s;
client_max_body_size 10M;
keepalive_timeout 15;

Expand Down

0 comments on commit 4b077d2

Please sign in to comment.