initial commit

This commit is contained in:
Ludwig Lehnert
2026-01-12 16:16:35 +01:00
commit 468974927c
6 changed files with 107 additions and 0 deletions

15
initialize.sh Executable file
View File

@@ -0,0 +1,15 @@
#!/usr/bin/env bash
cd "$(dirname "$0")"
mkdir -p ./traefik
touch traefik/acme.json
chmod 600 traefik/acme.json
if [ ! -f .logins ]; then
cp .logins.example .logins
fi
if [ ! -f .env ]; then
cp .env.example .env
fi