Ajout d’un partage HTTP pour Kodi

This commit is contained in:
VC
2019-10-26 09:11:17 +02:00
parent 4ec133bf42
commit acefb9083f

View File

@@ -3,6 +3,7 @@ server {
location / {
root /var/lib/transmission-daemon/downloads/;
autoindex on;
allow 10.233.212.64/27;
allow 2a01:cb0c:8516:7f00::/64;
allow 83.167.52.81;
allow 2001:1b48:2:103::/64;
@@ -10,3 +11,14 @@ server {
deny all;
}
}
server {
listen *:80;
server_name nfs.mateu.be;
location / {
root /var/lib/transmission-daemon/downloads/;
autoindex on;
allow 10.233.212.64/27;
}
}