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
Right now, you are publishing the control port on the IP of the machine this is running on, and in the advanced config, you are also allowing access from everyone. This does not seem like a good idea on internet-facing machines.
In that case, the control port is only bound to localhost and only allows access from machines in the docker network (you can of course restrict that even further if you want). With that config, you can access the control port from the local machine where docker is installed, or, when accessing the machine via SSH, you can do SSH port forwarding to use the client.foldingathome.org interface using ssh [machine] -L 7396:localhost:7396.
The text was updated successfully, but these errors were encountered:
Right now, you are publishing the control port on the IP of the machine this is running on, and in the advanced config, you are also allowing access from everyone. This does not seem like a good idea on internet-facing machines.
A more secure configuration may be:
In that case, the control port is only bound to localhost and only allows access from machines in the docker network (you can of course restrict that even further if you want). With that config, you can access the control port from the local machine where docker is installed, or, when accessing the machine via SSH, you can do SSH port forwarding to use the client.foldingathome.org interface using
ssh [machine] -L 7396:localhost:7396
.The text was updated successfully, but these errors were encountered: