Added clearnet proxy configuration files

This commit is contained in:
2022-05-22 15:10:47 +02:00
parent 79f9764871
commit 0bb5d4ff18
7 changed files with 1241 additions and 0 deletions

View File

@ -0,0 +1,19 @@
server {
listen [::]:80;
server_name 116.202.17.147 www.danwin1210.de [2a01:4f8:c010:d56::1];
location / {
rewrite / https://danwin1210.de$request_uri? permanent;
}
location /.well-known/ {
proxy_pass https://localhost;
}
}
server {
listen [::]:80 fastopen=100 backlog=2048 ipv6only=off default_server;
location / {
rewrite / https://$host$request_uri? permanent;
}
location /.well-known/ {
proxy_pass https://localhost;
}
}