This repository has been archived by the owner on Nov 3, 2024. It is now read-only.
-
-
Notifications
You must be signed in to change notification settings - Fork 160
/
README.txt
executable file
·29 lines (27 loc) · 1.69 KB
/
README.txt
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
# This directory holds "targets/sources" aka host configurations.
# Create files of any names (except README.txt) in this directory to provide access to remote systems via this form configuration:
target=(
# The SSH user used to connect to the remote webapp server.
[sshUser]=
# The SSH host of the remote webapp. Enclose IPv6 addresses in [].
[sshHost]=
# The SSH port
[sshPort]=22
# You can provide a path to an SSH private key here (local path from inside the web container).
# If you leave it empty, other means of authentification will be used:
# * after running `ddev auth ssh`, your SSH private keys from <home dir>/.ssh/* will be available
# * putting the key into .ddev/homeadditions/.ssh/id_rsa will make it available
# * or you will be asked for the SSH password
[sshPrivKey]=
# The hostname that the webapp uses to reach the MySQL/MariaDB database (the connection will be tunneled through SSH to sshUser@sshHost)
[mysqlHost]=mysql.myserver.com
[mysqlPort]=3306
[mysqlUser]=
[mysqlPass]=
[mysqlDatabase]=
# Provide a RegEx against which each database table is checked. If it matches, its data won't be downloaded (structure is unaffected by this).
# This is an example to ignore some common TYPO3 tables with cached or easily rebuildable data.
[ignoredDbTablesPattern]="^(sys_log|.*_sessions|cf_.*|.*cache.*|sys_file_processedfile|sys_refindex|sys_lockedrecords|tx_realurl_urldata|index_debug|index_fulltext|index_grlist|index_phash|index_rel|index_section|index_stat_search|index_stat_word|index_words|tx_crawler_queue|tx_extensionmanager_domain_model_extension)$"
)
# PS:
# The files are interpreted by Bash so you can use bash logic to fill in values