Browse Source

Add caddy reverse proxy websocket example (#2119)

* Add caddy reverse proxy websocket example

* Use consistent hostname for caddy reverse proxy
tags/v2.13.0
Neale Pickett 3 months ago
parent
commit
7b525f8899
No account linked to committer's email address
1 changed files with 8 additions and 0 deletions
  1. 8
    0
      docs/MANUAL.md

+ 8
- 0
docs/MANUAL.md View File

@@ -1033,6 +1033,14 @@ ProxyPass /webirc http://127.0.0.1:8067 upgrade=websocket
1033 1033
 ProxyPassReverse /webirc http://127.0.0.1:8067
1034 1034
 ```
1035 1035
 
1036
+On Caddy, websocket proxying can be configured with:
1037
+
1038
+```
1039
+handle_path /webirc {
1040
+  reverse_proxy 127.0.0.1:8067
1041
+}
1042
+```
1043
+
1036 1044
 ## Migrating from Anope or Atheme
1037 1045
 
1038 1046
 You can import user and channel registrations from an Anope or Atheme database into a new Ergo database (not all features are supported). Use the following steps:

Loading…
Cancel
Save