nginx.https.conf.jinja template indention fix

Signed-off-by: Jakub Onderka <jakub.onderka@gmail.com>
This commit is contained in:
Jakub Onderka 2019-08-01 20:51:27 +02:00 committed by Jakub Onderka
parent 41df8f0fcd
commit 53b5dcfece

View File

@ -137,13 +137,14 @@ http {
proxy_request_buffering off; proxy_request_buffering off;
} }
location /service/notifications { location /service/notifications {
return 404; return 404;
} }
} }
server {
listen 80; server {
#server_name harbordomain.com; listen 80;
return 308 https://$host$request_uri; #server_name harbordomain.com;
return 308 https://$host$request_uri;
} }
} }