Add containerfile and config files

This commit is contained in:
2024-06-18 21:44:22 -04:00
parent a99af4e419
commit 7ae79428e6
3 changed files with 44 additions and 0 deletions

22
danted.conf.template Normal file
View File

@@ -0,0 +1,22 @@
user.privileged: root
user.unprivileged: nobody
# The listening network interface or address.
internal: ${DANTE_LISTEN_INTERFACE} port=${DANTE_LISTEN_PORT}
# The proxying network interface or address.
external: ${DANTE_FORWARD_INTERFACE}
# socks-rules determine what is proxied through the external interface.
socksmethod: none
# client-rules determine who can connect to the internal interface.
clientmethod: none
client pass {
from: 0.0.0.0/0 to: 0.0.0.0/0
}
socks pass {
from: 0.0.0.0/0 to: 0.0.0.0/0
}