diff --git a/docs/deployment/supported-proxies/haproxy.md b/docs/deployment/supported-proxies/haproxy.md index a93bb775..0f40f6a7 100644 --- a/docs/deployment/supported-proxies/haproxy.md +++ b/docs/deployment/supported-proxies/haproxy.md @@ -45,7 +45,7 @@ You can separate each subdomain with a `|` in the regex, for example: backend upon successful authentication, for example: ``` acl host-jenkins hdr(host) -i jenkins.example.com - acl host-jenkins hdr(host) -i nextcloud.example.com + acl host-nextcloud hdr(host) -i nextcloud.example.com acl host-phpmyadmin hdr(host) -i phpmyadmin.example.com ``` 3. Add backend route for your service(s), for example: diff --git a/docs/deployment/supported-proxies/nginx.md b/docs/deployment/supported-proxies/nginx.md index e1274679..111f1755 100644 --- a/docs/deployment/supported-proxies/nginx.md +++ b/docs/deployment/supported-proxies/nginx.md @@ -143,7 +143,7 @@ server { location / { set $upstream_authelia http://authelia:9091; # This example assumes a Docker deployment proxy_pass $upstream_authelia; - include /config/nginx/proxy.conf; # + include /config/nginx/proxy.conf; } } ``` diff --git a/docs/deployment/supported-proxies/traefik2.x.md b/docs/deployment/supported-proxies/traefik2.x.md index c0498f27..21b65bbd 100644 --- a/docs/deployment/supported-proxies/traefik2.x.md +++ b/docs/deployment/supported-proxies/traefik2.x.md @@ -33,7 +33,7 @@ networks: services: traefik: - image: traefik:v2.1.2 + image: traefik:v2.2 container_name: traefik volumes: - /var/run/docker.sock:/var/run/docker.sock @@ -54,6 +54,8 @@ services: - '--providers.docker.exposedByDefault=false' - '--entrypoints.http=true' - '--entrypoints.http.address=:80' + - '--entrypoints.http.http.redirections.entrypoint.to=https' + - '--entrypoints.http.http.redirections.entrypoint.scheme=https' - '--entrypoints.https=true' - '--entrypoints.https.address=:443' - '--log=true'