2023-07-10 15:48:38 +02:00
|
|
|
# Caddy reverse proxy setup
|
2023-03-05 09:42:47 +01:00
|
|
|
|
|
|
|
This is a very basic config, assuming that you're using Caddy to manage SSL certificates for you.
|
|
|
|
Any log is disabled by default. Do not forget to replace `server_name` with your domain.
|
|
|
|
|
|
|
|
```
|
|
|
|
https://<server_name> {
|
|
|
|
reverse_proxy localhost:3000
|
|
|
|
|
|
|
|
log {
|
|
|
|
output discard
|
|
|
|
}
|
|
|
|
}
|
|
|
|
```
|