Skip to content

Commit a73717a

Browse files
authored
Authelia with Let's Encrypt Using Docker Compose
1 parent 8467754 commit a73717a

File tree

2 files changed

+2
-2
lines changed

2 files changed

+2
-2
lines changed

.github/workflows/00-deployment-verification.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -43,7 +43,7 @@ jobs:
4343
- name: Wait for the application to be ready via Traefik
4444
run: |
4545
echo "Checking the routing and availability of the application via Traefik..."
46-
timeout 5m bash -c 'while ! curl -fsSLk --write-out "%{http_code}" --output /dev/null "https://$APP_HOSTNAME" | grep -E "200|401"; do \
46+
timeout 5m bash -c 'while ! curl -fsSLk "https://$APP_HOSTNAME"; do \
4747
echo "Waiting for the application to be ready..."; \
4848
sleep 10; \
4949
done'

authelia-traefik-letsencrypt-docker-compose.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -73,7 +73,7 @@ services:
7373
# Use the 'websecure' (HTTPS) entry point
7474
- "traefik.http.routers.authelia.entrypoints=websecure"
7575
# Define the internal container port for routing
76-
- "traefik.http.services.authelia.loadbalancer.server.port=8080"
76+
- "traefik.http.services.authelia.loadbalancer.server.port=9091"
7777
# Enable TLS on this router
7878
- "traefik.http.routers.authelia.tls=true"
7979
# Use Let's Encrypt for certificate management

0 commit comments

Comments
 (0)