Node.js:将 repl 挂接到远程节点服务器
假设我有一个节点服务器在 mysite.com 上运行。有没有办法设置该服务器,以便我可以使用 node 的 repl api从我的本地计算机安全地连接到它?
Let's say I have a node server running at mysite.com. Is there a way to set up that server so that I can use node's repl api to securely connect to it from my local machine?
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(1)
好吧,如果您使用此示例:
并且对该端口
5001
进行了防火墙保护,您应该能够使用 ssh 安全地连接到它:在这种情况下,安全性依赖于您的防火墙和 ssh。
Well, if you used this example:
And firewalled that port
5001
, you should be able to securely connect to it using ssh:In this case, the security relies on your firewall, and ssh.