edit ddns-updater config

This commit is contained in:
Mika Bomm 2024-09-20 13:07:34 +02:00
parent 69f658ebbe
commit bbf63c197d
5 changed files with 19 additions and 22 deletions

4
.gitignore vendored
View file

@ -20,9 +20,7 @@
!**/services/*.caddy
#DDNS updater
!**/data/config.json
!**/data/config.json.backup
# Homeassistant
!**/homeassistant/config/configuration.yaml

View file

@ -1,4 +1,8 @@
# External
ha.mixel.cloud {
reverse_proxy 192.168.178.230:8123
}
# Internal
ha.mini1.docker.local {

View file

@ -1,6 +1,7 @@
services:
ddns-updater:
container_name: ddns-updater
user: 1001:1001
ports:
- 55555:8000/tcp
volumes:

View file

@ -1,19 +0,0 @@
{
"settings": [
{
"provider": "porkbun",
"domain": "ddns.mixel.cloud",
"api_key": "${PORKBUN_API_KEY}",
"secret_api_key": "${PORKBUN_API_SECRET_KEY}",
"ip_version": "ipv4"
},
{
"provider": "porkbun",
"domain": "pdf2.mixel.cloud",
"api_key": "${PORKBUN_API_KEY}",
"secret_api_key": "${PORKBUN_API_SECRET_KEY}",
"ip_version": "ipv4"
}
]
}

View file

@ -0,0 +1,13 @@
{
"settings": [
{
"provider": "porkbun",
"domain": "*.mixel.cloud",
"api_key": "${PORKBUN_API_KEY}",
"secret_api_key": "${PORKBUN_API_SECRET_KEY}",
"ip_version": "ipv4"
}
]
}
# ENV variables have to be changed to plaintext again since JSON doesnt support env variables