mirror of
https://github.com/m1ngsama/automa.git
synced 2026-03-25 18:23:49 +00:00
Deploy scripts now look for templates in INFRA_DIR first, then fall back to the bundled copies in automa. This makes automa fully self-contained: a .env with filled values is all that is needed — no infra checkout required. Bundle: config.json.example, privoxy.conf.example, shadowsocks-client.service, shadowsocks-rust.service, frps.toml.example, frps.service, frpc.toml.example, frpc.service
21 lines
375 B
Text
21 lines
375 B
Text
serverAddr = "${FRP_SERVER_ADDR}"
|
|
serverPort = ${FRP_SERVER_PORT}
|
|
|
|
auth.method = "token"
|
|
auth.token = "${FRP_TOKEN}"
|
|
|
|
# Example: expose home SSH
|
|
[[proxies]]
|
|
name = "home-ssh"
|
|
type = "tcp"
|
|
localIP = "127.0.0.1"
|
|
localPort = 22
|
|
remotePort = 1234
|
|
|
|
# Example: expose Minecraft
|
|
[[proxies]]
|
|
name = "minecraft"
|
|
type = "tcp"
|
|
localIP = "127.0.0.1"
|
|
localPort = 25565
|
|
remotePort = 25565
|