reverting nginx to use standard http and https ports
Some checks failed
Automatisch Backend Tests / test (pull_request) Has been cancelled
Automatisch CI / linter (pull_request) Has been cancelled
Automatisch CI / start-backend-server (pull_request) Has been cancelled
Automatisch CI / start-backend-worker (pull_request) Has been cancelled
Automatisch CI / build-web (pull_request) Has been cancelled

This commit is contained in:
Linden Crandall 2025-02-08 09:11:16 +09:00
parent 39c28001fa
commit 60351f7653
3 changed files with 12 additions and 12 deletions

View File

@ -3,9 +3,9 @@
server {
# nonstandard nginx http port
listen 7758;
listen [::]:7758;
# nginx http port
listen 80;
listen [::]:80;
server_name <HOSTNAME>;
location / {

View File

@ -3,9 +3,9 @@
server {
# nonstandard nginx http port
listen 7758;
listen [::]:7758;
# nginx http port
listen 80;
listen [::]:80;
server_name <HOSTNAME>;
location / {

View File

@ -4,9 +4,9 @@
server {
# nonstandard nginx http port
listen 7758;
listen [::]:7758;
# nginx http port
listen 80;
listen [::]:80;
server_name <HOSTNAME>;
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/<HOSTNAME>/fullchain.pem;