lukasz-wronski / vscode-ftp-sync

Ftp Sync plugin for Visual Studio Code
https://marketplace.visualstudio.com/items/lukasz-wronski.ftp-sync
321 stars 83 forks source link

VSCode FTP Extension with TLS Implicit FTPS azure setup #369

Open ankeorum opened 1 year ago

ankeorum commented 1 year ago

My ftp host is an azure service deployment slot with ftps and implicit connection working on port 990. My current setup for ftp-simple.json is:

{ "protocol": "ftp", "host": "myhost.azure.com", "port": 990, "user": "myuser", "pass": "mypasswordultrasecret", "remote": "/myawesomesite", "uploadOnSave": true, "passive": true, "ignore": [ "\\.vscode", "\\.git", "\\.DS_Store" ] }

Is there any property to let me connecting to my site?

https://imgur.com/a/yUgsl6u Here you have my configurations for PHPStorm and Dreamweaver which both works, I would need to replicate the same config on VSCode ftp plugin, any idea?