-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathACL_example#2
46 lines (43 loc) · 1.13 KB
/
ACL_example#2
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
{
"groups": {
"group:external_users_#1": [
],
},
"acls": [
// Allow external users to access Jellyfin.
{
"action": "accept",
"src": ["group:external_users_#1"],
"dst": ["*:8096"],
},
// Allow [email protected] access to Calibre_Reader.
{
"action": "accept",
"src": ["[email protected]"],
"dst": ["*:8123"],
},
// Allow [email protected] access to Flame, transmission, Calibre_Server_Manager, Calibre_Reader, Firefox_webtop and RustDesk_Direct_IP.
{
"action": "accept",
"src": ["[email protected]"],
"dst": ["*:5005", "*:9091", "*:8123", "*:8124", "*:3000", "*:21114-21116"],
},
// Allow the owner full unrestricted access.
{
"action": "accept",
"src": ["[email protected]"],
"dst": ["*:*"]
},
],
"nodeAttrs": [
{
"target": ["autogroup:member"],
"attr": ["funnel"],
},
],
}