-
Notifications
You must be signed in to change notification settings - Fork 0
/
server.conf.sample.php
38 lines (28 loc) · 1.56 KB
/
server.conf.sample.php
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
<?php
$SERVER_CONFIG = [];
$SERVER_CONFIG = array_merge($SERVER_CONFIG, [
"serverName" => "app.stonewood.com.do",
"host" => '192.168.20.221',
"port" => 22,
"username" => 'STONEWOOD/administrator',
"password" => YOUR_PASSWORD_HERE,
"githubPersonalAccessToken" => YOUR_GITHUB_PERSONAL_ACCESS_TOKEN_HERE,
"gitHubRepo" => 'github.com/Stonewood-RD/stonewood-app.git',
"CONFIG_HOME" => "C:\\AppStonewood",
]);
$SERVER_CONFIG = array_merge($SERVER_CONFIG, [
"REPOS_PATH" => $SERVER_CONFIG["CONFIG_HOME"]."\\Repos\\Production",
"ENV_FILE_PATH" => $SERVER_CONFIG["CONFIG_HOME"]."\\Config\\env.php",
'COMPOSER_AUTH_JSON_PATH' => $SERVER_CONFIG["CONFIG_HOME"]."\\Config\\Composer\\auth.json",
]);
$SERVER_CONFIG = array_merge($SERVER_CONFIG, [
"APACHE_CONFIG_PATH" => 'C:\\StonewoodSitesConf\\'.$SERVER_CONFIG["serverName"].'.conf',
"certificateFile" => $SERVER_CONFIG["CONFIG_HOME"]."/Certificate/app.stonewood.com.do-chain.pem",
"certificateKeyFile" => $SERVER_CONFIG["CONFIG_HOME"]."/Certificate/app.stonewood.com.do-key.pem",
"serverAliases" => [
"appstonewood",
],
]);
$SERVER_CONFIG["apacheConfig"]["certificateFile"] = "C:/AppStonewood/Certificate/app.stonewood.com.do-chain.pem";
$SERVER_CONFIG["apacheConfig"]["certificateKeyFile"] = "C:/AppStonewood/Certificate/app.stonewood.com.do-key.pem";
$SERVER_CONFIG["canonicalPath"] = "C:\StonewoodPHP-Production";