Replies: 1 comment
-
just set a combine remote to connect them all toguether. |
Beta Was this translation helpful? Give feedback.
0 replies
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
-
It would be helpful if it was possible to Serve multiple Remotes at the same time. Currently, starting a new serve session replaces any previous serve sessions, so only one serve session at a time is possible.
Either by serving each remote on a separate port (auto incremented or user defined port number):
Remote 1 = http://127.0.0.1:8080
Remote 2 = http://127.0.0.1:8081
Remote 3 = http://127.0.0.1:8082
Or even better, for HTTP based remotes (HTTP & WebDav), use the same port, but expose each Remote as a separate path:
Remote 1 = http://127.0.0.1:8080/remote1
Remote 2 = http://127.0.0.1:8080/remote2
Remote 3 = http://127.0.0.1:8080/remote3
Beta Was this translation helpful? Give feedback.
All reactions