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
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:
commit
e5352af33b
@ -3,9 +3,9 @@
|
||||
|
||||
server {
|
||||
|
||||
# nonstandard nginx http port
|
||||
listen 7758;
|
||||
listen [::]:7758;
|
||||
# nginx http port
|
||||
listen 80;
|
||||
listen [::]:80;
|
||||
server_name <HOSTNAME>;
|
||||
|
||||
location / {
|
||||
|
@ -3,9 +3,9 @@
|
||||
|
||||
server {
|
||||
|
||||
# nonstandard nginx http port
|
||||
listen 7758;
|
||||
listen [::]:7758;
|
||||
# nginx http port
|
||||
listen 80;
|
||||
listen [::]:80;
|
||||
server_name <HOSTNAME>;
|
||||
|
||||
location / {
|
||||
|
@ -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;
|
||||
|
Loading…
x
Reference in New Issue
Block a user