Porting nginx config to Caddy

This is all super simple to translate. Going from top to bottom:

Site label example.com. Prefix with http:// if you want no HTTPS (this nginx config does not serve HTTPS).

Use gzip

Transparent proxies. There’s no regex to select for proxy from path, so you’ll need to enumerate them

proxy /.well-known/webfinger http://127.0.0.1:8080 {
  transparent
}
proxy /.well-known/nodeinfo http://127.0.0.1:8080 {
  transparent
}
proxy /.well-known/host-meta http://127.0.0.1:8080 {
  transparent
}

Set the site root, root /var/www/example.com/static

Catch-all transparent proxy

proxy / http://127.0.0.1:8080 {
  transparent
}
1 Like