Add files via upload

This commit is contained in:
2026-03-31 18:12:44 +02:00
committed by GitHub
parent 7e276fabdd
commit 2302a5d337
5 changed files with 224 additions and 0 deletions
+11
View File
@@ -0,0 +1,11 @@
#!/usr/bin/with-contenv bashio
PAC_HOST=$(bashio::config 'pac_host')
PAC_PORT=$(bashio::config 'pac_port')
PROXY_PORT=$(bashio::config 'proxy_port')
bashio::log.info "Démarrage du proxy Arkteos"
bashio::log.info "PAC : ${PAC_HOST}:${PAC_PORT}"
bashio::log.info "Proxy en écoute sur port : ${PROXY_PORT}"
exec python3 /arkteos_proxy.py "${PAC_HOST}" "${PAC_PORT}" "${PROXY_PORT}"