Initial upload of configurations
This commit is contained in:
3
authelia/authelia.env
Normal file
3
authelia/authelia.env
Normal file
@@ -0,0 +1,3 @@
|
||||
CONTAINER_NAME=authelia
|
||||
PORT_HTTPS=9091
|
||||
DNS_OVERRIDE=1.1.1.1
|
||||
0
authelia/config/configuration.yml
Normal file
0
authelia/config/configuration.yml
Normal file
14
authelia/config/users_database.yml
Normal file
14
authelia/config/users_database.yml
Normal file
@@ -0,0 +1,14 @@
|
||||
---
|
||||
###############################################################
|
||||
# Users Database #
|
||||
###############################################################
|
||||
|
||||
users:
|
||||
username1:
|
||||
disabled: false
|
||||
displayname: "User 1"
|
||||
password: ""
|
||||
email: user1@gmail.com
|
||||
groups:
|
||||
- admin
|
||||
- user
|
||||
17
authelia/docker-compose.yaml
Normal file
17
authelia/docker-compose.yaml
Normal 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
|
||||
0
authelia/secrets/jwtsecret
Normal file
0
authelia/secrets/jwtsecret
Normal file
0
authelia/secrets/oicd.pem
Normal file
0
authelia/secrets/oicd.pem
Normal file
0
authelia/secrets/oidcsecret
Normal file
0
authelia/secrets/oidcsecret
Normal file
0
authelia/secrets/session
Normal file
0
authelia/secrets/session
Normal file
0
authelia/secrets/smtp
Normal file
0
authelia/secrets/smtp
Normal file
0
authelia/secrets/storage
Normal file
0
authelia/secrets/storage
Normal file
Reference in New Issue
Block a user