Merge pull request 'reverting nginx to use standard http and https ports' (#11) from dev into main
Some checks are pending
Automatisch Backend Tests / test (push) Waiting to run
Automatisch CI / linter (push) Waiting to run
Automatisch CI / start-backend-server (push) Waiting to run
Automatisch CI / start-backend-worker (push) Waiting to run
Automatisch CI / build-web (push) Waiting to run
Automatisch UI Tests / test (push) Waiting to run

Reviewed-on: #11
This commit is contained in:
Linden Crandall 2025-02-08 00:13:24 +00:00
commit e5352af33b
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;