This commit is contained in:
JMARyA 2024-09-11 11:57:01 +02:00
parent 5f17fabe66
commit b9fcbb4c98
Signed by: jmarya
GPG key ID: 901B2ADDF27C2263

View file

@ -7,3 +7,30 @@ repo: https://github.com/caddyserver/caddy
# Caddy # Caddy
#wip #wip
## Configuration
### Caddyfile
#todo
## Docker-Compose
```yml
services:
caddy:
image: caddy:latest
restart: unless-stopped
ports:
- "80:80"
- "443:443"
- "443:443/udp"
ulimits:
nofile:
soft: 65535
hard: 65535
volumes:
- ./Caddyfile:/etc/caddy/Caddyfile
- ./data:/data
- ./config:/config
- ./logs:/var/log
```