-
Notifications
You must be signed in to change notification settings - Fork 8
/
build.sbt.dist
53 lines (37 loc) · 1.89 KB
/
build.sbt.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
/// Configuration Parameters for Sites
// site names to import/export
// NOTE: if you change this you need to repeat the offline and online setup
// See http://www.agilesites.org/install.html
wcsSites in ThisBuild := "Demo"
// url to content server - NO slashes at the end please
// the url must allow access to ContentServer, CatalogManager and Satellite
wcsUrl in ThisBuild := "http://localhost:8181/cs"
// user to import/export
wcsUser in ThisBuild := "fwadmin"
// password to import/export
wcsPassword in ThisBuild := "xceladmin"
// Fatwire/Sites version - currently supported 11.1.1.6.0 and 11.1.1.8.0
wcsVersion in ThisBuild := "11.1.1.8.0"
// home directory of WCS - leave it to
wcsHome in ThisBuild := "../home"
// shared folder
wcsShared in ThisBuild := "../shared"
// webapp directory of WebCenter Sites
wcsWebapp in ThisBuild := "../webapps/cs"
// location of the csdt-client jar
wcsCsdtJar in ThisBuild := "../home/csdt-client-11.1.1.8.0.jar"
// this regexp must mach the numeric id of the flex blob
// the first group must be the numeric id of the flex blob
wcsFlexBlobs in ThisBuild := """^/(\d+)\.(jpg|png|gif)$"""
// this regexp must mach the name of the static resource
// the first group must be the name of the static resource
wcsStaticBlobs in ThisBuild := """^(.*\.(css|js|jpg|png|gif))$"""
/// Configurations options for front-end Satellite and proxy
/// use "wcs-setup-satellite" to setup the separate satellite host
// webapp directory of WebCenter Sites Satellite
// wcsWebappSatellite in ThisBuild := "/your/satellite/webappp"
// front end url - NO slashes at the end please
// the following SAMPLE assumes that a reverse proxy is configured
// mapping http://demo.loc to http://host:port/cs/Satellite/demo
// wcsVirtualHosts += ("Demo" -> "http://demo.loc")
// leave an empty line to support appending extra commands at the end