ngrok在Windows上内网穿透(网站+远程桌面连接)配置

下载已经编译好的Windows版的ngrok

  • 配置ngrok.cfg
server_addr: "baidu.com:4443"
trust_host_root_certs: false

tunnels:
    mstsc:
        remote_port: 3389      
        proto:
         tcp: "127.0.0.1:3389"
    web:
     subdomain: "tss"
     proto:
       http: 80
  • 编写start.bat文件
ngrok -config="ngrok.cfg" start mstsc web

然后下载bat转exe的工具,百度一下有很多,将其转为exe

  • 设置为开机自启服务

将其设置为开机自启服务,由于我使用的phpstudy所以还要将phpstudy设置为自启服务

打开CMD命令行输入下面的命令设置为服务自启

sc create 服务名称 binPath= 程序路径 start= auto

你可能感兴趣的:(ngrok)