Skip to content

Commit bd328fc

Browse files
committed
Adds troubleshooting notes to address common issues with editing deploy.ini, and removes short-form server declarations, which cause problems for some people.
1 parent 7296778 commit bd328fc

File tree

1 file changed

+11
-9
lines changed

1 file changed

+11
-9
lines changed

deploy.ini

Lines changed: 11 additions & 9 deletions
Original file line numberDiff line numberDiff line change
@@ -1,15 +1,17 @@
1-
; This is a sample deploy.ini file.
1+
; This is a sample deploy.ini file.
2+
;
3+
; NOTES:
4+
;
5+
; 1. Don't forget that each server has to have a section title (e.g. [example]).
6+
; 2. Don't forget to wrap your password around quotes.
7+
; 3. If you don't specify 'pass', git-deploy-php will let you enter it in the terminal.
28

39
[example]
410

511
skip = false
6-
user = example
7-
; remove this options and enter a password in the terminal
8-
pass = password
9-
host = example.com
12+
user = "example"
13+
pass = "password"
14+
host = "example.com"
1015
port = 21
11-
path = /path/to/installation
16+
path = "/path/to/installation"
1217
passive = true
13-
14-
; If that seemed too long for you, you can specify servers like this:
15-
[ftp://example:password@example.com:21/path/to/installation]

0 commit comments

Comments
 (0)