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
For a user to add an archive server (self-hosted server for syncing with CoMapeo over the internet), they need to enter a server address. This issue is to define what the requirements for the server address are. Proposal:
The address that the user enters does not need to include a protocol (e.g. https://)
If the user does enter a protocol, then it must be https://
Server address may include a port and a path.
For websocket connections, a server address with https:// should map to wss://, and http:// to ws://. Unencrypted protocols should only be allowed with dangerouslyAllowInsecureConnections.
Questions:
Should the backend or frontend be responsible for parsing the URL to check if it's valid? Maybe both?
The text was updated successfully, but these errors were encountered:
Description
For a user to add an archive server (self-hosted server for syncing with CoMapeo over the internet), they need to enter a server address. This issue is to define what the requirements for the server address are. Proposal:
https://
)https://
https://
should map towss://
, andhttp://
tows://
. Unencrypted protocols should only be allowed withdangerouslyAllowInsecureConnections
.Questions:
The text was updated successfully, but these errors were encountered: