mirror of
https://github.com/0rangebananaspy/authelia.git
synced 2024-09-14 22:47:21 +07:00
faf43de14f
* [FEATURE] Add TLS support. Fixes #368. * [FEATURE] Introduce OnError hook in suites. This hook allows to perform actions following an erroneous suite like displaying the logs of Authelia. * Display Authelia logs of Standalone suite when tests fail. * Fix Standalone suite. * Apply suggestions from code review * Rename ssl_key and ssl_cert into tls_key and tls_cert.
12 lines
417 B
YAML
12 lines
417 B
YAML
version: '3'
|
|
services:
|
|
authelia-backend:
|
|
environment:
|
|
- AUTHELIA_JWT_SECRET=very_important_secret
|
|
- AUTHELIA_SESSION_SECRET=unsecure_session_secret
|
|
volumes:
|
|
- './Standalone/configuration.yml:/etc/authelia/configuration.yml:ro'
|
|
- './Standalone/users.yml:/var/lib/authelia/users.yml'
|
|
- './Standalone/ssl:/var/lib/authelia/ssl'
|
|
- '/tmp:/tmp'
|
|
user: ${USER_ID}:${GROUP_ID} |