diff --git a/authelia/Dockerfile b/authelia/Dockerfile index 2b3a2d3..4d57156 100644 --- a/authelia/Dockerfile +++ b/authelia/Dockerfile @@ -1,2 +1,3 @@ FROM authelia/authelia -COPY configuration.yml /config/configuration.yml \ No newline at end of file +COPY configuration.yml /config/configuration.yml +COPY users.yml /config/users.yml \ No newline at end of file diff --git a/authelia/configuration.yml b/authelia/configuration.yml index 4511e0c..532ed6a 100644 --- a/authelia/configuration.yml +++ b/authelia/configuration.yml @@ -12,6 +12,7 @@ log: authentication_backend: file: + path: /config/users.yml access_control: default_policy: one_factor @@ -27,7 +28,7 @@ session: cookies: - domain: chocomarsh.com authelia_url: https://auth.chocomarsh.com - default_redirection_url: https://auth.chocomarsh.com + default_redirection_url: https://login.chocomarsh.com storage: encryption_key: "a_very_long_secret_32_characters_minimum" diff --git a/authelia/users.yml b/authelia/users.yml new file mode 100644 index 0000000..c590c6f --- /dev/null +++ b/authelia/users.yml @@ -0,0 +1,3 @@ +users: + emmatveev: + password: "$argon2id$v=19$m=65536,t=1,p=4$CixMXaAilVof3yk1rtghwg$V/kcl1HNDWeybrV3SrVjjdI00D1lFtuvLldkwAklSOE" \ No newline at end of file