Skip to content

Commit 31a87f4

Browse files
committed
disabling letsencrypt
1 parent 3b04640 commit 31a87f4

File tree

3 files changed

+4
-3
lines changed

3 files changed

+4
-3
lines changed

.github/workflows/prod-cd.yaml

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -12,6 +12,7 @@ jobs:
1212
HOST: ${{ secrets.HOST }}
1313
ADMIN_PASS: ${{ secrets.ADMIN_PASS }}
1414
DB_PASS: ${{ secrets.DB_PASS }}
15+
AUTO_LE: yes
1516
API_WORKERS: 8
1617

1718
steps:

.github/workflows/staging.yaml

Lines changed: 2 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -12,6 +12,8 @@ jobs:
1212

1313
env:
1414
HOST: yacs.duckdns.org
15+
AUTO_LE: no
16+
SELF_CERT: yes
1517
API_WORKERS: 8
1618

1719
steps:

docker-compose.production.yml

Lines changed: 1 addition & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -8,8 +8,6 @@ services:
88
ports:
99
- 80:8080
1010
- 443:8443
11-
volumes:
12-
- ./src/web/cert:/etc/letsencrypt
1311
environment:
1412
# https://docs.docker.com/compose/compose-file/#variable-substitution
1513
# - HOST=${HOST:-localhost}
@@ -38,7 +36,7 @@ services:
3836
- USE_PROXY_CACHE=yes
3937
- PROXY_CACHE_VALID=200=1s
4038
# ===== HTTPS config =====
41-
- AUTO_LETS_ENCRYPT=${AUTO_LE:-yes}
39+
- AUTO_LETS_ENCRYPT=${AUTO_LE:-no}
4240
- GENERATE_SELF_SIGNED_SSL=${SELF_CERT:-no}
4341
- REDIRECT_HTTP_TO_HTTPS=yes
4442
# ===== ModSecurity =====

0 commit comments

Comments
 (0)