mirror of
https://github.com/iv-org/documentation.git
synced 2025-05-03 07:14:56 -04:00
Add Caddy web server reverse proxy documentation (#286)
This commit is contained in:
parent
b813a6264c
commit
d29d5111b3
3 changed files with 16 additions and 0 deletions
14
docs/caddy.md
Normal file
14
docs/caddy.md
Normal file
|
@ -0,0 +1,14 @@
|
|||
# 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
|
||||
}
|
||||
}
|
||||
```
|
Loading…
Add table
Add a link
Reference in a new issue