-
Notifications
You must be signed in to change notification settings - Fork 13
Installation Guide: Caddy
Mark Hughes edited this page May 13, 2021
·
1 revision
Wiki Home / Installation Guides / Caddy
This guide is for how you can setup droppy with Caddy, a popular open source security-focused web server that can also be used as a reverse proxy. For this use case, we're setting up Caddy to work with a reverse proxy.
The configuration for your Caddyfile is fairly simple, see this example:
droppy.example.com {
proxy / 127.0.0.1:8989 {
websocket
transparent
}
timeouts none
}
Should you run on a different port, be sure to change 8989
to something else.