feat: simplify btf

This commit is contained in:
VC
2024-07-05 11:53:39 +02:00
parent bdac6fb742
commit c2bd26a2ac

View File

@@ -1,19 +1,8 @@
{% set allowed_ips=['10.233.212.64/27', '163.172.112.19', '2a01:e0a:9bd:2811::/64', '2a01:e0a:9bd:2810::/64', '130.180.219.188'] -%}
{% set allowed_ips=['10.233.212.64/27', '163.172.112.19', '2a01:e0a:9bd:2811::/64', '2a01:e0a:9bd:2810::/64', '130.180.219.188', '2a01:e0a:fc:ebc0::/64'] -%}
server {
{% include './templates/header.conf.j2' %}
location / {
deny all;
}
location /bt {
root /var/lib/transmission-daemon/downloads/;
autoindex on;
{% for allowed_ip in allowed_ips -%}
allow {{ allowed_ip }};
{% endfor -%}
deny all;
}
location /tank {
root /net/;
autoindex on;
{% for allowed_ip in allowed_ips -%}