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
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:
parent
39c28001fa
commit
60351f7653
@ -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