我试图在Bitbucket和Runcloud服务器之间建立sftp连接。 Runcloud仅使用sftp连接。 Bitbucket配置:
image: php:7.3
pipelines:
branches:
master:
- step:
name: Deploy to production
deployment: production
script:
- apt-get update
- apt-get -qq install git-ftp
- git ftp init --user $SFTP_username --passwd $FTP_password sftp://runcloud@1.111.111.11/home/runcloud/webapps/mywebsite/wp-content/themes/mywebsiteTheme
连接总是失败,并显示错误致命:无法访问远程'sftp://1.111.111.11',退出...
我尝试了不同的sftp Path组合,但结果始终相同。 sftp://1.111.111.11/home/runcloud/webapps/mywebsite/wp-content/themes/mywebsiteTheme sftp:// mywebsite / home / runcloud / webapps / mywebsite / wp-content / themes / mywebsiteTheme
我的网站 根路径:/ home / runcloud / webapps / mywebsite 公用路径:/ home / runcloud / webapps / mywebsite
Runcload与ftp的“正常”设置有所不同。例如,与FileZila连接的主机就是我的服务器IP。要进入我的网站,我必须浏览/ webapps / mywebsite
不确定我做错了什么,我的sftp路径不正确吗?