From 60351f765389c00111f0affc55856e14a2619a1b Mon Sep 17 00:00:00 2001 From: Linden Crandall Date: Sat, 8 Feb 2025 09:11:16 +0900 Subject: [PATCH] reverting nginx to use standard http and https ports --- https/nginx/automatisch_letsencrypt_nginx.conf | 6 +++--- .../automatisch_letsencrypt_nginx_template.conf | 6 +++--- .../secondary_automatisch_letsencrypt_nginx.conf | 12 ++++++------ 3 files changed, 12 insertions(+), 12 deletions(-) diff --git a/https/nginx/automatisch_letsencrypt_nginx.conf b/https/nginx/automatisch_letsencrypt_nginx.conf index addaa57..33451eb 100644 --- a/https/nginx/automatisch_letsencrypt_nginx.conf +++ b/https/nginx/automatisch_letsencrypt_nginx.conf @@ -3,9 +3,9 @@ server { - # nonstandard nginx http port - listen 7758; - listen [::]:7758; + # nginx http port + listen 80; + listen [::]:80; server_name ; location / { diff --git a/https/nginx/automatisch_letsencrypt_nginx_template.conf b/https/nginx/automatisch_letsencrypt_nginx_template.conf index addaa57..33451eb 100644 --- a/https/nginx/automatisch_letsencrypt_nginx_template.conf +++ b/https/nginx/automatisch_letsencrypt_nginx_template.conf @@ -3,9 +3,9 @@ server { - # nonstandard nginx http port - listen 7758; - listen [::]:7758; + # nginx http port + listen 80; + listen [::]:80; server_name ; location / { diff --git a/https/nginx/secondary_automatisch_letsencrypt_nginx.conf b/https/nginx/secondary_automatisch_letsencrypt_nginx.conf index 69cf04e..d180163 100644 --- a/https/nginx/secondary_automatisch_letsencrypt_nginx.conf +++ b/https/nginx/secondary_automatisch_letsencrypt_nginx.conf @@ -4,9 +4,9 @@ server { - # nonstandard nginx http port - listen 7758; - listen [::]:7758; + # nginx http port + listen 80; + listen [::]:80; server_name ; location ~ /.well-known/acme-challenge/ { @@ -18,9 +18,9 @@ server { server { - # nonstandard nginx https port - listen 7759 ssl http2; - listen [::]:7759 ssl http2; + # nginx https port + listen 443 ssl http2; + listen [::]:443 ssl http2; # use ssl letsencrypt certs ssl_certificate /etc/letsencrypt/live//fullchain.pem; -- 2.47.2