You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
In the README you provide an apache, nginx and cadet configuration, here is yet another one:
frontend <your-domain>
bind ...
...
acl is_whiteboard path_beg -i /whiteboard
use_backend whiteboard if is_whiteboard
...
backend whiteboard
mode http
option forwardfor
option http-server-close
http-request replace-path /whiteboard(/)?(.*) /\2
timeout tunnel 1h
http-request set-header Connection "Upgrade"
http-request set-header Upgrade %[req.hdr(Upgrade)]
server whiteboard 192.168.0.1:3002 check # your internal IP address and port, here default whiteboard port
Uses <your_domain>/whiteboard as path (so you configure with /whiteboard), removes it and forwards connection to whiteboard server. Take a look at sticky sessions if you want to add more whiteboard servers
The text was updated successfully, but these errors were encountered:
In the README you provide an apache, nginx and cadet configuration, here is yet another one:
Uses
<your_domain>/whiteboard
as path (so you configure with/whiteboard
), removes it and forwards connection to whiteboard server. Take a look at sticky sessions if you want to add more whiteboard serversThe text was updated successfully, but these errors were encountered: