Adds firefly and homebox, replaces nginx-proxy/acme-companion with acme
This commit is contained in:
@@ -0,0 +1,7 @@
|
||||
app-key=8d26b9UVzNGWRo66EmLRR21NPCmNENtn
|
||||
auto-import=F7L2xAS4ysJT8nzh
|
||||
cron-token=dO1TcxzYxxZ2sVMVXZqytNLQ6DGMY6WU
|
||||
database-password=1B81gQEZ3qI4dry3Zh3X13NrTAwb0zsu
|
||||
passport-private-key=IwZB3Yx9WuuMp9wlqnGielWnrwRfyO1b
|
||||
passport-public-key=20NeELcOlmlSevBv90IAWOBHQjcE3Vt4
|
||||
redis-password=vKlxKQFDp47cLr9cwpsqZHMP6bPZgXQR
|
||||
@@ -0,0 +1,2 @@
|
||||
database-password=A33zI2pqP22MnRiAiCD5F13YEQFeljKk
|
||||
homebox-pepper=BWoYfQ1GT/t9PLZTAftkxjVV5GzpEoY7i+lyECwLf8OtzMmXGqTbVmFklwtNx8y+
|
||||
+6
-4
@@ -2,12 +2,14 @@
|
||||
set -o errexit -o pipefail -o noclobber -o nounset -o errtrace -o functrace
|
||||
|
||||
update_url=https://infomaniak.com/nic/update
|
||||
subdomains=(git home komga mail matrix mealie navidrome nextcloud nexus odoo paperless photos pihole torrent wallabag)
|
||||
subdomains=(finance git home homebox import.finance komga mail matrix mealie navidrome nextcloud nexus odoo overleaf paperless photos pihole tasks torrent wallabag wiki zigbee)
|
||||
data_file="${HOME}/.dyndns"
|
||||
file="${HOME}/tmp_data.txt"
|
||||
for subdomain in "${subdomains[@]}"; do
|
||||
sed "s/gtache.ch/${subdomain}.gtache.ch/" "${data_file}" >| "${file}"
|
||||
curl -d "@${file}" -X POST "${update_url}"
|
||||
sed -e "s/gtache.ch/${subdomain}.gtache.ch/" "${data_file}" >| "${file}"
|
||||
curl -4 -d "@${file}" -X POST "${update_url}"
|
||||
curl -6 -d "@${file}" -X POST "${update_url}"
|
||||
done
|
||||
curl -4 -d "@${data_file}" -X POST "${update_url}"
|
||||
curl -6 -d "@${data_file}" -X POST "${update_url}"
|
||||
rm -f "${file}"
|
||||
curl -d "@${data_file}" -X POST "${update_url}"
|
||||
|
||||
Reference in New Issue
Block a user