1
0

misc goodies

This commit is contained in:
Konstantin Demin 2024-05-20 16:32:24 +03:00
parent 35c4aa99da
commit 69477f8cc0
Signed by: krd
GPG Key ID: 4D56F87A8BA65FD0
2 changed files with 28 additions and 0 deletions

View File

@ -1,3 +1,28 @@
map $remote_addr
$krdsh_remote_type
{
default external;
## 127.0.0.0/8
~^127\..+$ internal;
## 10.0.0.0/8
# ~^10\..+$ internal;
## 172.16.0.0/12
# ~^172\.(?:1[6-9]|2[0-9]|3[01])\..+$ internal;
## 192.168.0.0/16
# ~^192\.168\..+$ internal;
## 192.0.2.0/24
~^192\.0\.2\..+$ internal;
## 198.51.0.0/24
# ~^198\.51\.0\..+$ internal;
## 198.18.0.0/15
# ~^198\.1[89]\..+$ internal;
## 203.0.113.0/24
# ~^203\.0\.113\..+$ internal;
## 240.0.0.0/4
~^2(?:4[0-9]|5[0-5])\..+$ internal;
}
map $scheme:$host
$krdsh_need_ssl
{

3
snip.d/disable-comp Normal file
View File

@ -0,0 +1,3 @@
gzip off;
brotli off;
zstd off;