-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathftp_deploy.ini.template
100 lines (83 loc) · 2.35 KB
/
ftp_deploy.ini.template
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
; log file (defaults to config file with .log extension)
log = "deploy_${environement}.log"
; directory for temporary files (defaults to system's temporary directory)
tempDir = "/tmp/deploy_${environement}"
; enable colored highlights? (defaults to autodetect)
;colors = yes
[production] ; Optional section (there may be more than one section).
; remote FTP server
; you can use ftps://, sftp://, file:// or phpsec:// protocols (sftp requires SSH2 extension; phpsec uses phpseclib library)
;
; Error: PHP extension SSH2 is not loaded. in phar:///usr/local/bin/ftpdeploy/src/Deployment/SshServer.php:57
;remote = sftp://164.138.221.242:1022/opt/VankosoftProjects/VankoSoft.Org/production/
remote = "${url}"
; do not like to specify user & password in 'remote'? Use these options:
user = "${user}"
password = "${password}"
; FTP passive mode
passiveMode = yes
; local path (optional)
local = .
; run in test-mode? (can be enabled by option -t or --test)
test = no
; files and directories to ignore
ignore = "
.git*
README.md
/LICENSE
CHANGELOG.md
Jenkinsfile
/ftp_deploy.ini
/.env.production
/.env.staging
build.xml
composer.lock
symfony.lock
package.json
webpack.config.js
yarn.lock
yarn-error.log
/node_modules
/assets
/docs
/public/index.php
/templates/base.html.twig
/src/Kernel.php
/config/packages
/config/routes
/config/bundles.php
/config/preload.php
/config/routes.yaml
/config/services.yaml
/public/web-guitar-pro/_themes/vankosoft/web-guitar-pro-angularjs/bundles/*
/themes/WebGuitarPro_ReactJs
/themes/WebGuitarPro_VueJs
"
; explicit list of files and directories to include (by default includes all files and directories)
include = "
/bin
/bin/*
/config
/config/*
/public
/public/*
/src
/src/*
/templates
/templates/*
/translations
/translations/*
/vendor
/vendor/*
/.env
/composer.json
/themes
/themes/*
/themes/WebGuitarPro_VelzonSaas
/themes/WebGuitarPro_VelzonSaas/*
/VERSION
"
; is allowed to delete remote files? (defaults to yes)
allowDelete = yes
; file which contains hashes of all uploaded files (defaults to .htdeployment)
deploymentFile = .deployment