multiple config changes until 09/2021

This commit is contained in:
root
2021-09-18 14:59:54 +02:00
parent 0c02fac0ba
commit b30bdb4fa3
13 changed files with 666 additions and 154 deletions

23
fet.at/t2.conf Normal file
View File

@@ -0,0 +1,23 @@
server {
listen 80;
server_name *.t2.fet.at;
include snippets/letsencrypt.conf;
# root /var/www/html
# return 301 https://$host$request_uri;
}
server {
listen 443;
server_name t2.fet.at *.t2.fet.at;
include snippets/ssl.conf;
include snippets/ldap.conf;
location / {
# include snippets/header.conf;
proxy_pass https://rancher:443;
include snippets/proxy_header.conf;
# include snippets/proxy_header.conf;
}
}