taskmonkey-cli 0.8.5 → 0.9.0
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- package/package.json +1 -1
- package/src/commands/pull.js +10 -5
package/package.json
CHANGED
package/src/commands/pull.js
CHANGED
|
@@ -394,20 +394,25 @@ Der Server hat SSH-Zugang zu Remote-Servern und deployt ein temporäres PHP-Gate
|
|
|
394
394
|
\`\`\`php
|
|
395
395
|
'remote_databases' => [
|
|
396
396
|
'meine_website' => [
|
|
397
|
-
'
|
|
398
|
-
'
|
|
397
|
+
'hostname' => 'ssh.example.com',
|
|
398
|
+
'remote_user' => 'ssh-user',
|
|
399
399
|
'port' => 22,
|
|
400
400
|
'ssh_key' => '-----BEGIN OPENSSH PRIVATE KEY-----
|
|
401
|
-
|
|
401
|
+
...key content...
|
|
402
402
|
-----END OPENSSH PRIVATE KEY-----',
|
|
403
403
|
'web_root' => '/var/www/html',
|
|
404
|
+
'base_url' => 'https://www.example.com', // Öffentliche URL!
|
|
404
405
|
'cms' => 'contao',
|
|
405
406
|
],
|
|
406
407
|
],
|
|
407
408
|
\`\`\`
|
|
408
409
|
|
|
409
|
-
**ssh_key
|
|
410
|
-
|
|
410
|
+
**ssh_key:** Key-Inhalt direkt (empfohlen) oder Dateipfad auf dem Server.
|
|
411
|
+
**WICHTIG:** RSA PEM-Format ohne Passphrase verwenden (\`-----BEGIN RSA PRIVATE KEY-----\`).
|
|
412
|
+
OpenSSH-Format und Passwort-geschützte Keys können Probleme verursachen.
|
|
413
|
+
Key konvertieren: \`ssh-keygen -p -m PEM -P "passphrase" -N "" -f key\`
|
|
414
|
+
|
|
415
|
+
Siehe \`docs/DatabaseGateway.md\` für Troubleshooting und vollständige Feld-Referenz.
|
|
411
416
|
|
|
412
417
|
Siehe \`docs/DatabaseGateway.md\` für die vollständige Dokumentation inkl. SQL-Beispiele und CMS-Tabellen.
|
|
413
418
|
|