mirror of
https://github.com/0rangebananaspy/authelia.git
synced 2024-09-14 22:47:21 +07:00
92b78f7c15
These are 2 measures for improving security of cookies. One is used to not send the cookie over HTTP (only HTTPS) and the other tells the browser to disallow client-side code accessing the cookie.
14 lines
264 B
YAML
14 lines
264 B
YAML
version: '2'
|
|
services:
|
|
authelia:
|
|
build: .
|
|
restart: always
|
|
volumes:
|
|
- ./config.template.yml:/etc/authelia/config.yml:ro
|
|
environment:
|
|
- NODE_TLS_REJECT_UNAUTHORIZED=0
|
|
depends_on:
|
|
- redis
|
|
networks:
|
|
- example-network
|