Initial upload of configurations

This commit is contained in:
Sil Klaasboer
2025-02-17 19:23:54 +01:00
parent 75ea10380d
commit ca2bcafe16
184 changed files with 4660 additions and 2 deletions

3
authelia/authelia.env Normal file
View File

@@ -0,0 +1,3 @@
CONTAINER_NAME=authelia
PORT_HTTPS=9091
DNS_OVERRIDE=1.1.1.1

View File

View File

@@ -0,0 +1,14 @@
---
###############################################################
# Users Database #
###############################################################
users:
username1:
disabled: false
displayname: "User 1"
password: ""
email: user1@gmail.com
groups:
- admin
- user

View File

@@ -0,0 +1,17 @@
authelia:
image: authelia/authelia
container_name: ${CONTAINER_NAME}
volumes:
- ${HOME_DIR}/${CONTAINER_NAME}/config:/config
ports:
- ${PORT_HTTPS}:9091
env_file:
- path: ./authelia.env
required: true
- path: ../global.env
required: true
dns: # do not use dns given by router because it will create a loop when pihole or the server goes down and starts back up
- ${DNS_OVERRIDE}
restart: unless-stopped
environment:
- TZ=Europe/Amsterdam

View File

View File

View File

0
authelia/secrets/session Normal file
View File

0
authelia/secrets/smtp Normal file
View File

0
authelia/secrets/storage Normal file
View File