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