mirror of
https://github.com/amnezia-vpn/amnezia-client.git
synced 2026-06-21 02:01:03 +07:00
a49892c7e7
* Feat: Add MtProxy (Telegram) * add path files * Feat: Add Telemt (MtProxy) * fixed secret & enum * remove old path * refactor: move logic from ui to core --------- Co-authored-by: vkamn <vk@amnezia.org>
13 lines
268 B
Bash
13 lines
268 B
Bash
#!/bin/sh
|
|
|
|
echo "Container startup (Telemt)"
|
|
|
|
if [ ! -f /data/config.toml ]; then
|
|
echo "ERROR: /data/config.toml not found — run configure_container first"
|
|
tail -f /dev/null
|
|
exit 1
|
|
fi
|
|
|
|
mkdir -p /data/tlsfront
|
|
exec /usr/local/bin/telemt /data/config.toml
|