-
Notifications
You must be signed in to change notification settings - Fork 0
/
global.cfg
50 lines (42 loc) · 1.06 KB
/
global.cfg
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
#########################################################
# dwiz global installation configuration file
#
# - Change the below settings to reflect your needs
#
# - Comment singular variable out to let dwiz always ask
# for the wanted value.
#
# - use the '-v' argument to skip these settings
#
##########################################################
########################
# Default webserver path
# and sub path
########################
#wsRoot=/var/www
#wsSubPath=drupal
#################
# Database Server
#################
dbUrl=mysql://
dbAddress=localhost
dbRootUsername=root
dbRootPassword=root
drupalDbUsername=drupal
drupalDbPassword=drupal
#Generate a random Database Name (12 alphanumeric length)
randomName=$(cat /dev/urandom | tr -dc 'a-zA-Z0-9' | fold -w 18 | head -n 1)
drupalDbName=$randomName
drupalDbPrefix=dwiz_
#################
# Drupal Web Site
#################
drupalDefaultVersion=7
drupalEmail=mail@example.com
drupalLocale=en
###############
# Administrator
###############
adminUsername=admin
adminPassword=admin
adminEmail=admin@example.com