Comment out trailing block ending

For people installing an instance with only the reverse proxy server, the hidden trailing `}` at the end of the second server block is quite hard to catch and it took me a good while to figure it out. Having the entire server commented out makes the whole process more understandable in my opinion.
This commit is contained in:
Olof Pettersson 2021-12-01 14:18:28 +01:00 committed by GitHub
parent 1fed22b27e
commit 5f10ccd9c7
No known key found for this signature in database
GPG key ID: 4AEE18F83AFDEB23

View file

@ -17,7 +17,8 @@ server {
# # redirect http to https
# return 301 https://your-domain.com$request_uri;
# }
}
#
# server {
# listen [::]:443 ssl http2;
@ -54,7 +55,7 @@ server {
# location /static/ {
# alias /app/static/;
# }
}
# }
# Reverse-Proxy server
# server {