Skip to content

Commit 0c5c400

Browse files
authored
Merge pull request #8 from nikurasutan/add-caddy-config
feat(add-caddy-config): Caddy Reverse Proxy Config
2 parents 16f959c + 95fdbb9 commit 0c5c400

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)