forked from moodlehq/moodle-performance-comparison
-
Notifications
You must be signed in to change notification settings - Fork 0
/
webserver_config.properties.dist
109 lines (93 loc) · 4.11 KB
/
webserver_config.properties.dist
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
###############################################
# Configure with your own values.
#
# Remember to run ./before_run_setup.sh after changing
# any of those values as everything would change and
# previous runs would neither be valid.
###############################################
## Site info #################################################
# All Moodle db types supported, but only 'pgsql' and 'mysqli' auto backup/restore, manual backup/restore required for other drivers, more info in before_run_setup.sh and after_run_setup.sh.
dbtype="pgsql"
dbhost="docker_moodle_db"
dbname="moodle"
# The user should have permissions to create and drop databases.
dbuser="moodle"
dbpass="5UBO1cOQJAvXZXZi3vgYu43T0DaMnLfB"
dbprefix="mdl_"
# As explained in README.md these tools are intended to be used in internal networks.
wwwroot="http://localhost"
dataroot="/var/data/moodle"
toolgeneratorpassword="moodlerules"
## Repository and test branches information ##################
# The moodle repository where the base branch is located.
repository="git://github.com/moodle/moodle.git"
# The base where both before and after branches will be updated.
# This is necessary in case there are changes in
# the generators codebase between before and after, we would not
# be able to compare results as the test plan generator or the
# generated data would change, so this setting will always be
# pointing to a minor or major release hash.
#
# You don't need to change this value
# This is Moodle 3.5 (Build: 20180517) - 2018051700.00
basecommit="46574904afd39578fa4146bf1fc5c401ac680aa6"
# This is Moodle 3.4 (Build: 20171113) - 2017111300.00
#basecommit="665c3ac59c35b7387a4fc70b8ac6600ce9ffeb87"
# This is Moodle 3.3 (Build: 20170515) - 2017051500.00
#basecommit="b87a580aa3eb23d5f05d7f619fc40a89e0f86fe5"
# This is Moodle 3.2 (Build: 20161205) - 2016120500.00
#basecommit="b182239f21c38ea57cddb41b0c03ef3eb02709f8"
# This is Moodle 3.1 (Build: 20160523) - 2016052300.00
# basecommit="268abfacc54c4cbf9722c1502569b311c7caefff"
# This is Moodle 3.0 (Build: 20150511) - 2015051100.00
#basecommit="6114fab93b414fcfa107d5a8fa2b35bc99d3464e"
# This is Moodle 2.9 (Build: 20150511) - 2015051100.00
#basecommit="cbd90c01c120a199ca53b5965785c55f88834cdc"
# This is Moodle 2.8 (Build: 20141110) - 2014111000.00
# basecommit="21db825b19e84bb24c0661b551a5069970e143c4"
# Older bases in the branch will be listed here:
# The original branch.
# Usually one of Moodle's weekly released branches. You can also use a git hash here.
beforebranchrepository="git://github.com/moodle/moodle.git"
beforebranch="master"
# The branch to compare against.
# Usually your development branch or the same $beforebranch value if
# you are comparing different settings configurations. You can also use a git hash here.
afterbranchrepository="git://github.com/moodle/moodle.git"
afterbranch="master"
## Others ####################################################
# The database and dataroot backups will be stored here.
# Note that this can grow a lot depending on the test sizes you use.
backupsdir="/your/directory/with/a/lot/of/free/space"
# Services names to restart before each run.
# Note that this will only work in a limited set of systems as it uses system calls like "service $servicename restart"
# You will need to restart the involved services manually.
#
# Default value set in defaults.properties
#
#servicesarray=( apache2 mysql postgresql )
# Path or alias of the browser you want to open the results with.
# This setting is only useful when running compare.sh script.
#
# Default value set in defaults.properties
#
#browser="firefox"
# Allows you to overwrite the default commands.
# Useful if you have multiple instances, if your
# commands are not in $PATH...
#
# Default values set in defaults.properties
#
#phpcmd='php'
#mysqlcmd='mysql'
#pgsqlcmd='psql'
#mysqldumpcmd='mysqldump'
#pgsqldumpcmd='pg_dump'
#gitcmd='git'
#curlcmd='curl'
# Allows you to change the size used by compare.sh
# Note that using a XS size may lead to unstable results
# as there is moodle code that only runs only certain
# timing conditions; this is balanced leading to stable
# results using a S size or higher.
#defaultcomparesize=S