Entrypoint script replaced with mustpl (#24)

This commit is contained in:
Paramtamtam
2022-08-26 17:05:50 +04:00
committed by GitHub
parent 2e9ef61cf8
commit fb24456662
8 changed files with 101 additions and 57 deletions

22
3proxy.cfg.json Normal file
View File

@@ -0,0 +1,22 @@
{
"log": {
"output": "/dev/stdout"
},
"name_servers": [
"${PRIMARY_RESOLVER:-1.0.0.1}",
"${SECONDARY_RESOLVER:-8.8.4.4}",
"1.1.1.1",
"9.9.9.9",
"8.8.8.8"
],
"name_servers_cache": 65536,
"max_connections": "${MAX_CONNECTIONS:-1024}",
"auth": {
"login": "${PROXY_LOGIN:-}",
"password": "${PROXY_PASSWORD:-}"
},
"ports": {
"proxy": "${PROXY_PORT:-3128}",
"socks": "${SOCKS_PORT:-1080}"
}
}