Add Caddy web server reverse proxy documentation (#286)

This commit is contained in:
Mateusz Bączek 2023-03-05 09:42:47 +01:00 committed by GitHub
parent b813a6264c
commit d29d5111b3
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23
3 changed files with 16 additions and 0 deletions

14
docs/caddy.md Normal file
View 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
}
}
```

View File

@ -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)

View File

@ -25,6 +25,7 @@ nav:
- 'configuration.md'
- 'apache2.md'
- 'nginx.md'
- 'caddy.md'
- 'db-maintenance.md'
- 'captcha-bug.md'
- 'anti-captcha.md'