never forget either
Caddyfile, Firewall, Docker compose ALL can fail
This commit is contained in:
parent
87683fb70f
commit
4bc7c8949c
|
@ -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 {
|
||||
|
|
|
@ -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
|
||||
|
|
Loading…
Reference in a new issue