-
Notifications
You must be signed in to change notification settings - Fork 0
/
lst-agldwg-drupal-config-sample.ini
114 lines (105 loc) · 4.84 KB
/
lst-agldwg-drupal-config-sample.ini
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
101
102
103
104
105
106
107
108
109
110
111
112
113
114
# ./lst-agldwg-drupal-installer.sh -e lst-agldwg-drupal-config-sample.ini
# Installation directory, relative to PWD. Must not already exist.
INST_DIR=sample
# INST_VERSION is optional; if not specified, you'll get the default,
# i.e., the latest version.
# E.g., to get the latest release in the 9.1 series:
# INST_VERSION='~9.1.0'
# Parameters to drush si.
# Note that these parameters have _underscores_,
# whereas the parameter names of si have hyphens.
# Database URL
# NB 1: for localhost, specify the host as 127.0.0.1.
# (Specifying "localhost" means a Unix-domain socket will be used,
# which may not work. (Certainly, any port number is ignored.))
# NB 2: specifying the port (default for MySQL, 3306) seems
# to be necessary to keep backup_migrate happy. See:
# https://www.drupal.org/project/backup_migrate/issues/3229022
SI_DB_URL=mysql://sample_user:[email protected]:3306/sample_db
# Database root username and password
SI_DB_SU=database_root_user_goes_here
SI_DB_SU_PW=database_root_password_goes_here
# Email address to which system notifications are sent
# (e.g., when a security patch is available).
# First account created, as an admin account
SI_ACCOUNT_NAME=admin
SI_ACCOUNT_PASS=admin_password_goes_here
SI_LOCALE=en
SI_SITE_NAME="LinkStitcher Example Registry"
# Optional: specify the name of the subdirectory of web/sites
# to be created. Defaults to "default".
#SI_SITES_SUBDIR=staging
# But if SI_SITES_SUBDIR is specified, you should also specify
# the host alias to be used as a key in web/sites/sites.php.
# See example.sites.php for the syntax of such keys.
# E.g., for https://www.drupal.org:8080/mysite/test/ ,
# you would specify SITES_KEY=8080.www.drupal.org.mysite.test
#SITES_KEY=443.localhost.staging
# Optional: configuration of the trusted_host_patterns setting.
# If not specified, defaults to just '^localhost$'.
# Specify the values in a (PHP) list, _without_ the surrounding brackets.
#TRUSTED_HOST_PATTERNS=
#IFS=$'\t\n' read -r -d '' TRUSTED_HOST_PATTERNS << EOM
# '^localhost$',
# '^12.34.56.78$',
#EOM
# Optional: configuration of the file_private_path setting.
# It may be either a path relative to the docroot, e.g., ../private ,
# or an absolute path. If the latter, specify a value such as
# /...full_path.../penultimate/private , where the directory
# /...full_path.../penultimate must already exist and be writable
# by the web server and by drush.
#FILE_PRIVATE_PATH=../private
# Optional: configuration of the file_public_path setting.
# Although Drupal allows this setting to be
# either a path relative to the docroot, e.g., ../files ,
# or an absolute path, only absolute paths have been tested with the
# installer script.
# For an absolute path, specify a value such as
# /...full_path.../penultimate/files , where the directory
# /...full_path.../penultimate must already exist and be writable
# by the web server and by drush.
#FILE_PUBLIC_PATH=/Users/.../installation-public-private/.../files
# You must specify this if and only if you specified a value for
# FILE_PUBLIC_PATH. It's up to you to configure Apache HTTP Server to
# point this URL to FILE_PUBLIC_PATH.
#FILE_PUBLIC_BASE_URL=https://localhost/files
# And you must also specify this if and only if you specified a value
# for FILE_PUBLIC_PATH. This is the used to redirect from the files
# directory to the main Drupal installation. The value is prepended
# directly to "index.php". Therefore, the value should probably begin
# and end with a slash. If Drupal is installed at the top of the
# server, specify the value "/".
#MAIN_SITE_REDIRECT_PATH=/
# Optional: configuration of the environment_indicator module.
# Specify _either_ one of the keys defined in
# environment_indicator_indicators.php, e.g., production, staging, etc.,
# _or_ an array value defining the bg_color, fg_color, and name values.
# In the latter case, no need to include a trailing semicolon.
# So EITHER this type of setting:
# ENVIRONMENT_INDICATOR=development
# OR this type:
# read -r -d '' ENVIRONMENT_INDICATOR << EOM
# array(
# 'bg_color' => '#BB0066',
# 'fg_color' => '#FFFFBB',
# 'name' => 'my environment'
# )
# EOM
# Optional: e-mail address to which feedback contact form submissions
# are sent. Defaults to the value of SI_SITE_MAIL.
# Optional: e-mail address from which Rules notifications are sent
# (e.g., when a user makes a request).
# TODO: MIME mail sender name and email address
# Optional: human-readable name of the e-mail address from which Rules
# notifications are sent.
# RULES_EMAIL_NAME="Site Email Address Rules Drupal"
# Optional: configuration of the environment_indicator module.
# Extra commands to be run after the base installation.
# extra_installation() {
# code goes here
# }