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
{{ message }}
This repository has been archived by the owner on Mar 21, 2023. It is now read-only.
having another process running on :443 will prevent sprucebot platform start command from completing, CLI should check that this port and any other required ports are open.
The text was updated successfully, but these errors were encountered:
@artisgarbage This requires the start command to run with root privileges. Seems better to me to just rely on the tooling to report that something is listening on port 443
That package still delegates to a net.createServer().listen(port) call. That will throw EACCESS when that command tries to listen on port < 1024. Since we're trying to listen on 80, we don't really know if something is listening already or not.
having another process running on :443 will prevent
sprucebot platform start
command from completing, CLI should check that this port and any other required ports are open.The text was updated successfully, but these errors were encountered: