nodes/kunsi-t470: allow RFC1918 ips to access obs websocket
All checks were successful
kunsi/bundlewrap/pipeline/head This commit looks good

This commit is contained in:
Franzi 2021-12-09 10:23:16 +01:00
parent 6638f8ce9f
commit 999bdf3336
Signed by: kunsi
GPG key ID: 12E3D2136B818350

View file

@ -34,6 +34,12 @@ nodes['kunsi-t470'] = {
},
'firewall': {
'port_rules': {
# obs websocket thingie - just allow all RFC1918 ips here
'4444': {
'10.0.0.0/8',
'172.16.0.0/12',
'192.168.0.0/16',
},
# For the occasional file-share using `python -m http.server`
'8000': {'*'},
},