mirror of
https://github.com/0rangebananaspy/authelia.git
synced 2024-09-14 22:47:21 +07:00
771c220d38
* [FEATURE] Support updated haproxy-auth-request This version removes the dependency of lua-socket which seemed to result in many unsupported and broken BSD/Pfsense deployments. * Fix docs indentation * Add haproxy-lua-http to TLS enabled configuration
12 lines
476 B
YAML
12 lines
476 B
YAML
version: '3'
|
|
services:
|
|
haproxy:
|
|
build: ./example/compose/haproxy/
|
|
volumes:
|
|
- ./example/compose/haproxy/haproxy.cfg:/usr/local/etc/haproxy/haproxy.cfg:ro
|
|
- ./example/compose/haproxy/http.lua:/usr/local/etc/haproxy/haproxy-lua-http/http.lua
|
|
- ./example/compose/haproxy/auth-request.lua:/usr/local/etc/haproxy/auth-request.lua
|
|
networks:
|
|
authelianet:
|
|
# Set the IP to be able to query on port 8080
|
|
ipv4_address: 192.168.240.100 |