Add logging to :80 stanza

This commit is contained in:
Jose Diaz-Gonzalez
2015-06-27 12:24:27 -04:00
parent 6bb513f12c
commit e2e36a5045

View File

@@ -2,6 +2,8 @@ server {
listen [::]:80;
listen 80;
server_name $NOSSL_SERVER_NAME;
access_log /var/log/nginx/${APP}-access.log;
error_log /var/log/nginx/${APP}-error.log;
return 301 https://\$host\$request_uri;
}