From fb155fbc614e94aa41cf34957b4ea75f492d9471 Mon Sep 17 00:00:00 2001 From: Devon Mackay Date: Tue, 7 Aug 2018 15:40:12 -0400 Subject: [PATCH] Switch nginx listeners to proper ports --- deploy/kubernetes/atst-nginx-configmap.yml | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/deploy/kubernetes/atst-nginx-configmap.yml b/deploy/kubernetes/atst-nginx-configmap.yml index 47b6d5b0..e7ac0bb5 100644 --- a/deploy/kubernetes/atst-nginx-configmap.yml +++ b/deploy/kubernetes/atst-nginx-configmap.yml @@ -10,7 +10,7 @@ data: nginx-config: |- server { server_name www.atat.codes atat.codes; - listen 80 http2; + listen 8080 http2; #if ($http_x_forwarded_proto != 'https') { # return 301 https://$host$request_uri; #} @@ -29,7 +29,7 @@ data: } server { server_name auth.atat.codes; - listen 443 ssl http2; + listen 8443 ssl http2; listen [::]:443 ssl http2 ipv6only=on; # SSL server certificate and private key ssl_certificate /etc/ssl/private/auth.atat.crt