Skip to content

Commit

Permalink
Add Caddy web server reverse proxy documentation (#286)
Browse files Browse the repository at this point in the history
  • Loading branch information
Wint3rmute committed Mar 5, 2023
1 parent b813a62 commit d29d511
Show file tree
Hide file tree
Showing 3 changed files with 16 additions and 0 deletions.
14 changes: 14 additions & 0 deletions docs/caddy.md
Original file line number Diff line number Diff line change
@@ -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
}
}
```
1 change: 1 addition & 0 deletions docs/index.md
Original file line number Diff line number Diff line change
Expand Up @@ -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)
Expand Down
1 change: 1 addition & 0 deletions mkdocs.yml
Original file line number Diff line number Diff line change
Expand Up @@ -25,6 +25,7 @@ nav:
- 'configuration.md'
- 'apache2.md'
- 'nginx.md'
- 'caddy.md'
- 'db-maintenance.md'
- 'captcha-bug.md'
- 'anti-captcha.md'
Expand Down

0 comments on commit d29d511

Please sign in to comment.