mirror of
https://gitea.invidious.io/iv-org/documentation.git
synced 2024-08-15 00:53:34 +00:00
15 lines
310 B
Markdown
15 lines
310 B
Markdown
|
# Caddy reverse proxy
|
||
|
|
||
|
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
|
||
|
}
|
||
|
}
|
||
|
```
|