LoginSignup
0
0

More than 5 years have passed since last update.

ATOMからリモートサーバ接続を行う設定値

Last updated at Posted at 2017-11-19

ATOMからリモートファイルを編集する際の設定値を残す。

インストール

  • settings->+install で「Remote-FTP」をインストール

設定ファイル作成

  • Packages > Remote-FTP > Create FTP config file

デフォルト設定

{
“protocol”: “ftp”,
“host”: “xxx.xxx.xxx.xx”,
“port”: 21,
“user”: “”,
“pass”: “”,
“promptForPass”: true,
“remote”: “/home/pi/SampleProject”,
“local”: “D:/SampleProject”,
“secure”: false,
“secureOptions”: null,
“connTimeout”: 10000,
“pasvTimeout”: 10000,
“keepalive”: 10000,
“watch”: [],
“watchTimeout”: 500
}

リモート接続の設定

{
    "protocol": "sftp",
    "host": "ec2-xx-xxx-xxx-xxx.us-west-2.compute.amazonaws.com",
    "port": 22,
    "user": "username",
    "pass": "",
    "promptForPass": "",
    "remote": "/",
    "local": "",
    "secure": false,
    "secureOptions": null,
    "connTimeout": 10000,
    "pasvTimeout": 10000,
    "keepalive": 10000,
    "watch": [],
    "watchTimeout": 500,
    "privatekey": "秘密鍵のパス"

}
0
0
0

Register as a new user and use Qiita more conveniently

  1. You get articles that match your needs
  2. You can efficiently read back useful information
  3. You can use dark theme
What you can do with signing up
0
0