-
Notifications
You must be signed in to change notification settings - Fork 0
/
server.json
82 lines (82 loc) · 2.28 KB
/
server.json
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
{
"name":"commandbox-tests-multi-site-bindings",
"sites":{
"site1":{
"hostAlias":"site1.com",
"webroot":"site1",
"bindings":{
"HTTP":{
"listen":"81"
},
"SSL":{
"listen":"444",
"certFile":"../certs/ServerCert-all-SAN.pfx"
},
"AJP":{
"listen":"8010",
"secret":"8010secret"
}
}
},
"site2":{
"hostAlias":"site2.com",
"webroot":"site2",
"bindings":{
"http":[
{
"listen":"0.0.0.0:80"
},
{
"listen":"0.0.0.0:82"
}
],
"ssl":{
"listen":"0.0.0.0:446",
"certFile":"../certs/ServerCert-all-SAN.pfx"
},
"AJP":{
"listen":"0.0.0.0:8011",
"secret":"8011secret"
}
}
},
"site3":{
"webroot":"site3"
}
},
"scripts":{
"ajp-up":"set modCFMLBaseDir=`pwd` && !docker-compose -f apache-ajp-proxy/docker-compose.yml up -d --build",
"ajp-down":"!docker-compose -f apache-ajp-proxy/docker-compose.yml down",
"ajp-restart":"set modCFMLBaseDir=`pwd` && !docker-compose -f apache-ajp-proxy/docker-compose.yml restart"
},
"hostAlias":"site3.com",
"web":{
"host":"0.0.0.0",
"HTTP":{
"port":"80"
},
"SSL":{
"enable":"true",
"port":"443",
"certFile":"../certs/ServerCert-all-SAN.pfx"
},
"AJP":{
"enable":"true",
"port":"8009",
"secret":"8009secret"
},
"bindings":{
"HTTP":{
"listen":"0.0.0.0:8080"
},
"SSL":{
"listen":"0.0.0.0:8443",
"certFile":"../certs/ServerCert-all-SAN.pfx"
},
"AJP":{
"listen":"0.0.0.0:16009",
"secret":"16009secret"
}
}
}
}