Alex Denes
8df9fdc4ab
- More templating and inheritance - New commands + rx_replace + rx_install + rx_cpkgdir - More transparency with secrets being sourced as variables and replaced - Modularization of configs + telegraf + nginx (partial) + fastd + wireguard + unbound - Split of unbound configurations and bind zones - Bumping of key versions (rolling keys) + ZSK/KSK + OpenDKIM - Relaxed permission defaults and other smaller tweaks...
17 lines
389 B
Plaintext
17 lines
389 B
Plaintext
server {
|
|
listen *:7575 so_keepalive=on;
|
|
listen [::]:7575 so_keepalive=on;
|
|
|
|
location / {
|
|
root /usr/share/redxen/homepage;
|
|
autoindex on;
|
|
limit_except GET HEAD {
|
|
deny all;
|
|
}
|
|
}
|
|
|
|
location = /telegram {
|
|
return 302 https://t.me/joinchat/RSK4t6hPtkJDLYBO;
|
|
}
|
|
}
|