From 4bc7c8949c5a185d98daead577df5821797ef4a7 Mon Sep 17 00:00:00 2001 From: Mika Bomm Date: Mon, 5 Aug 2024 18:34:16 +0200 Subject: [PATCH] never forget either Caddyfile, Firewall, Docker compose ALL can fail --- caddy/Caddyfile | 6 ++++-- caddy/compose.yaml | 7 +++++-- 2 files changed, 9 insertions(+), 4 deletions(-) diff --git a/caddy/Caddyfile b/caddy/Caddyfile index b206f74..5e290d3 100644 --- a/caddy/Caddyfile +++ b/caddy/Caddyfile @@ -1,8 +1,10 @@ # GLOBAL CONFIGURATIONS { #Define default port to reverse proxy on to 81 / 444 since 80 / 443 is already used - http_port 81 - https_port 444 + #http_port 81 + #https_port 444 + http_port 80 + https_port 443 email {$CADDY_ACME_EMAIL} acme_dns porkbun { diff --git a/caddy/compose.yaml b/caddy/compose.yaml index aa2d99a..ff8b88a 100644 --- a/caddy/compose.yaml +++ b/caddy/compose.yaml @@ -6,8 +6,11 @@ services: restart: unless-stopped container_name: caddy ports: - - "81:81" - - "444:444" + - "80:80" + - "443:443" + # Leftover from the Nginx proxy manager times + #- "81:81" + #- "444:444" volumes: - ./Caddyfile:/etc/caddy/Caddyfile - ./site:/srv