-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy path.hosts.yml
55 lines (55 loc) · 2.07 KB
/
.hosts.yml
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
# rename to hosts.yml & change sensitive information
'707namkp-xw6adrv.project.anyhost.it':
repository: 'https://github.com/nikhilgosavi007/nutrition-web.git'
# if `branch` is not set, current branch name of local working copy will be used
branch: 'master'
stage: 'production'
# deploy path + typo3_webroot (see below) result in public web path, here e.g. '~/current/public/'
# (the 'current' segment is maintained by Deployer, pointing to the current release)
deploy_path: '~/'
# DocumentRoot for TYPO3 project (public accessible)
typo3_webroot: 'public'
# SSH username
user: '707namkp_xw6adrv'
# SSH port (default 22)
port: 22
# TYPO3 specific definitions
typo3:
# either 'apache' or 'nginx'
serverType: 'nginx'
# TYPO3_CONF_VARS settings to be overridden in remote LocalConfiguration.php
settings:
DB:
Connections:
Default:
dbname: '707namkp_xw6adrv'
host: '127.0.0.1'
password: 'Z0$bKUXbo8t.LLw!g12Uo1%'
port: 3306
user: '707namkp_xw6adrv'
MAIL:
transport: 'smtp'
transport_smtp_server: 'localhost:25'
BE:
# (`::password-hash::` will trigger a cryptographic password
# hash being applied to the following clear-text value)
installToolPassword: '::password-hash::df#bg3kdsbfgJFD*HBGdsf'
SYS:
# (`::random-value::` will trigger creating a 64 byte random value)
encryptionKey: '::random-value::'
# TYPO3 Install Tool presets to be applied
presets:
# 'debug' or 'live'
context: 'debug'
# Database changes to be applied on remote database
databaseChanges:
# name of the table 'be_users'
be_users:
# set: key-value pairs to be modified
# (`::password-hash::` will trigger a cryptographic password
# hash being applied to the following clear-text value)
- set:
password: '::password-hash::df#bg3kdsbfgJFD*HBGdsf'
# where: constraints to be matched (which records to modify)
where:
username: 'admin'