Skip to content

Commit

Permalink
Adds troubleshooting notes to address common issues with editing depl…
Browse files Browse the repository at this point in the history
…oy.ini, and removes short-form server declarations, which cause problems for some people.
  • Loading branch information
pocketarc committed Jan 3, 2016
1 parent 7296778 commit bd328fc
Showing 1 changed file with 11 additions and 9 deletions.
20 changes: 11 additions & 9 deletions deploy.ini
Original file line number Diff line number Diff line change
@@ -1,15 +1,17 @@
; This is a sample deploy.ini file.
; This is a sample deploy.ini file.
;
; NOTES:
;
; 1. Don't forget that each server has to have a section title (e.g. [example]).
; 2. Don't forget to wrap your password around quotes.
; 3. If you don't specify 'pass', git-deploy-php will let you enter it in the terminal.

[example]

skip = false
user = example
; remove this options and enter a password in the terminal
pass = password
host = example.com
user = "example"
pass = "password"
host = "example.com"
port = 21
path = /path/to/installation
path = "/path/to/installation"
passive = true

; If that seemed too long for you, you can specify servers like this:
[ftp://example:password@example.com:21/path/to/installation]

0 comments on commit bd328fc

Please sign in to comment.