设置EC2实例,以允许使用PHPSTORM在我的本地计算机上进行调试
我在其上使用NGINX和PHP测试Web应用程序有一个EC2实例。
当前,每当我想使用phpstorm进行调试时,我都必须在Ubuntu终端中输入此命令:
sudo ssh -N -R 9000:localhost:9000 -i "devInstanceNginx.pem" [email protected]
我想知道我能做什么,这样我就不必执行该命令。
(请注意,如果这有所不同,我通常只会从2个设备之一进行调试)
I have a EC2 instance using nginx and a PHP test web application on it.
Currently every time I want to debug using PhpStorm I have to enter this command in my Ubuntu terminal:
sudo ssh -N -R 9000:localhost:9000 -i "devInstanceNginx.pem" [email protected]
I am wondering what I can do so that I don't have to do that command.
(Note I will only generally debug from one of 2 devices if that makes a difference)
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(1)
您可以使用此脚本创建“Shell 脚本”运行配置。可以通过“运行”>“添加配置”编辑配置:
You can create a "Shell script" run configuration with this script. Configuration can be added via Run > Edit Configurations: