Reputation: 4687
I've installed sftp plugin for Sublime Text 3.
Is it possible to configure sftp with proxy?
I am looking for any proxy settings.
Does anyone know about this?
Upvotes: 1
Views: 2997
Reputation: 4052
Try to add this in your "Package Control.sublime-settings":
"http_proxy": "proxy.my.net:8080", "https_proxy": "proxy.my.net:8080",
If it didn't work, try to use following steps:
Hope it can help you.
Upvotes: 0
Reputation: 2290
Use ProxyCommand
inside sftp_flags
.
Something like this worked for me:
// Destination server info
"host": "dest.example.com",
"user": "foo",
// Proxy server info
"sftp_flags": [
"-o",
"ProxyCommand ssh [email protected] -i ~/.ssh/bar.pem -W %h:%p"
]
Upvotes: 2