Add Caddy web server reverse proxy documentation (#286)
This commit is contained in:
parent
b813a6264c
commit
d29d5111b3
|
@ -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
|
||||
}
|
||||
}
|
||||
```
|
|
@ -15,6 +15,7 @@
|
|||
- [Configuration](./configuration.md)
|
||||
- [Apache2 Virtual Host with Reverse Proxy](./apache2.md)
|
||||
- [Nginx Reverse Proxy Configuration](./nginx.md)
|
||||
- [Caddy Reverse Proxy Configuration](./caddy.md)
|
||||
- [Database Information and Maintenance](./db-maintenance.md)
|
||||
- [Issues with CAPTCHA](./captcha-bug.md)
|
||||
- [How to setup Anti-Captcha](./anti-captcha.md)
|
||||
|
|
|
@ -25,6 +25,7 @@ nav:
|
|||
- 'configuration.md'
|
||||
- 'apache2.md'
|
||||
- 'nginx.md'
|
||||
- 'caddy.md'
|
||||
- 'db-maintenance.md'
|
||||
- 'captcha-bug.md'
|
||||
- 'anti-captcha.md'
|
||||
|
|
Loading…
Reference in New Issue