Skip to content

Commit 95fdbb9

Browse files
committed
feat(add-caddy-config): Caddy Reverse Proxy Config
Add a example for a Caddy Reverse Proxy Configuration to revere-proxies.md
1 parent 3e26126 commit 95fdbb9

File tree

1 file changed

+12
-0
lines changed

1 file changed

+12
-0
lines changed

docs/docker/reverse-proxies.md

Lines changed: 12 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -64,3 +64,15 @@ server {
6464
}
6565
}
6666
```
67+
68+
## Caddy
69+
Make sure to use HTTPS for redirection to avoid mixed content errors.
70+
71+
Add this to your Caddyfile:
72+
```Caddyfile
73+
links.example.com {
74+
reverse_proxy https://localhost:443 {
75+
tls_insecure_skip_verify
76+
}
77+
}
78+
```

0 commit comments

Comments
 (0)