update
This commit is contained in:
parent
5f17fabe66
commit
b9fcbb4c98
1 changed files with 27 additions and 0 deletions
|
@ -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
|
||||||
|
```
|
||||||
|
|
Loading…
Add table
Reference in a new issue