-
Notifications
You must be signed in to change notification settings - Fork 1
/
circleci.modx.config.xml
67 lines (54 loc) · 2.88 KB
/
circleci.modx.config.xml
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
<!--
MODX Revolution
Copyright 2006-2015 by MODX, LLC. All rights reserved.
This program is free software; you can redistribute it and/or modify it under
the terms of the GNU General Public License as published by the Free Software
Foundation; either version 2 of the License, or (at your option) any later
version.
This program is distributed in the hope that it will be useful, but WITHOUT
ANY WARRANTY; without even the implied warranty of MERCHANTABILITY or FITNESS
FOR A PARTICULAR PURPOSE. See the GNU General Public License for more
details.
You should have received a copy of the GNU General Public License along with
this program; if not, write to the Free Software Foundation, Inc., 59 Temple
Place, Suite 330, Boston, MA 02111-1307 USA
An example configuration xml file for new CLI MODX installs.
-->
<modx>
<database_type>mysql</database_type>
<database_server>127.0.0.1</database_server>
<database>circle_test</database>
<database_user>ubuntu</database_user>
<database_password></database_password>
<database_connection_charset>utf8</database_connection_charset>
<database_charset>utf8</database_charset>
<database_collation>utf8_general_ci</database_collation>
<table_prefix>modx_</table_prefix>
<https_port>443</https_port>
<http_host>localhost</http_host>
<cache_disabled>0</cache_disabled>
<!-- Set this to 1 if you are using MODX from Git or extracted it from the full MODX package to the server prior
to installation. -->
<inplace>0</inplace>
<!-- Set this to 1 if you have manually extracted the core package from the file core/packages/core.transport.zip.
This will reduce the time it takes for the installation process on systems that do not allow the PHP time_limit
and Apache script execution time settings to be altered. -->
<unpacked>0</unpacked>
<!-- The language to install MODX for. This will set the default manager language to this. Use IANA codes. -->
<language>en</language>
<!-- Information for your administrator account -->
<cmsadmin>circle_test</cmsadmin>
<cmspassword>circle_test</cmspassword>
<cmsadminemail>circle_test@modmore.com</cmsadminemail>
<!-- Paths for your MODX core directory -->
<core_path>/home/ubuntu/Alpacka/modx/core/</core_path>
<!-- Paths for the default contexts that are installed. -->
<context_mgr_path>/home/ubuntu/Alpacka/modx/manager/</context_mgr_path>
<context_mgr_url>/modx/manager/</context_mgr_url>
<context_connectors_path>/home/ubuntu/Alpacka/modx/connectors/</context_connectors_path>
<context_connectors_url>/modx/connectors/</context_connectors_url>
<context_web_path>/home/ubuntu/Alpacka/modx/</context_web_path>
<context_web_url>/modx/</context_web_url>
<!-- Whether or not to remove the setup/ directory after installation. -->
<remove_setup_directory>1</remove_setup_directory>
</modx>