1 | #------------------------------------------------------------------------------ |
---|
2 | # Site Specific Property Overrides for the IBIS-PH View app/system. These values |
---|
3 | # are applied to the Spring context configuration bean definitions. The form is: |
---|
4 | # beanID.propertyName = value |
---|
5 | # |
---|
6 | # IMPORTANT: For these values to be used, they must be referenced. This is |
---|
7 | # typically specified via the siteSpecificPropertyOverrides bean which is a |
---|
8 | # default core implementation that is contained in the config/srping/SiteSpecific.xml |
---|
9 | # file. |
---|
10 | # |
---|
11 | # The use of this file is OPTIONAL. These values can be specified in the ss.xml |
---|
12 | # file as well but require more work as a complete, whole new bean with the same |
---|
13 | # name will need to be defined. This file is useful for poking string values into |
---|
14 | # existing bean definitions or when specifying different values to be used while |
---|
15 | # keeping the same war file deployable to multiple environments without mods. |
---|
16 | # |
---|
17 | # PATH CONVENTION: |
---|
18 | # All paths shall have a trailing "/". Sub paths should never have a leading "/" |
---|
19 | # but will always have the trailing "/". Base paths can have a leading "/" as |
---|
20 | # this represents the root of the file system. |
---|
21 | #------------------------------------------------------------------------------ |
---|
22 | |
---|
23 | #--- IBISQ/QueryApplication URLs: Base address. These addresses can include |
---|
24 | # a proxy to the deployed IBIS View system which is allowed to communicate |
---|
25 | # to the backend server, the address to SAS Intrnet, or the actual address |
---|
26 | # of the webserver/IBIS-Q SAS CGI application. |
---|
27 | # Linux Example: http://hlcbsas/cgi-bin/hi_iq_func |
---|
28 | # Windows Example: http://localhost/cgi-bin/hi_iq_func.exe |
---|
29 | #queryBaseQueryApplicationRequestPath.string =http://localhost/cgi-bin/hi_iq_func.exe |
---|
30 | |
---|
31 | # working with nm data |
---|
32 | queryBaseQueryApplicationRequestPath.string =http://10.135.2.255/cgi-bin/hi_iq_func22.exe |
---|
33 | |
---|
34 | |
---|
35 | #--- Most adopters should be splitting their XML and JSON content out from the |
---|
36 | # ibisph-view webapp. This has several advantages like shared data and not |
---|
37 | # having to put any content files in the deployment package. The main content |
---|
38 | # path is specified below. The xml and json paths by default are subdirs |
---|
39 | # below the main content path. Below are examples of how to specify the base |
---|
40 | # content file path used by all "Path" type bean configurations. |
---|
41 | # Again this simply provides a mechanism to easily locate files to a |
---|
42 | # directory outside of the webapp. The default location is the relative |
---|
43 | # "" path within the webapp. |
---|
44 | #commonXMLBasePath.string =../../../ibisph-content/xml |
---|
45 | #commonXMLBasePath.string =file:/d:/tomcat7/webapps/ibisph-content/xml |
---|
46 | #commonXMLBasePath.string =http://localhost/ibisph-content/xml |
---|
47 | commonContentBasePath.string =../nmibis-content/ |
---|
48 | |
---|
49 | |
---|
50 | #--- Base admin app preview related XML file path. Just like the content base |
---|
51 | # path above, this can be a relataive, explicit file path or request URL. |
---|
52 | # |
---|
53 | # IMPORTANT SECURITY NOTE: It is recommended to go through the admin app |
---|
54 | # (e.g. URL request based) for XML IP file requests so that the admin app can |
---|
55 | # handle file privs/security. This is needed for those adopters that have |
---|
56 | # sensitive, non public IP files and is a good practice in general. |
---|
57 | indicatorPreviewFilePath.string =http://localhost/nmibis-admin/view/xml/preview/indicator/profile/ |
---|
58 | |
---|
59 | |
---|
60 | #--- Base server with app context request URL to be used by the app when creating |
---|
61 | # outside links back to the app. This value needs to be the server name AND |
---|
62 | # application context. An example of where this value is used is for google |
---|
63 | # search requests and the user self registration verification process email |
---|
64 | # link. The user is sent a verification email that has a URL that the user |
---|
65 | # clicks to verify and activate their account. This is needed because the |
---|
66 | # server only knows its IP address - it has no idea what DNS entry is needed |
---|
67 | # to get to itself. For the same reason the outside application context path |
---|
68 | # is also needed (upstream proxy can be one value while the app knows its |
---|
69 | # context path differently). This value is then used internally by the code |
---|
70 | # to build the actual request URL. This value defaults to: |
---|
71 | # http://localhost/ibisph-view/ which is only used for local development. |
---|
72 | # This value will never be the webapp's address and context the outside |
---|
73 | # request and WILL fail (ie set this to the approp value). |
---|
74 | commonWebAppRemoteRequestPath.string =https://ibis.health.state.nm.us |
---|
75 | |
---|
76 | |
---|
77 | #--- self registered user email overrides |
---|
78 | userEmailVerificationService.mailMessageFrom =nm-ibis.user.verification@state.nm.us |
---|
79 | userEmailVerificationService.mailSubject =NM IBIS - Self Registed MyData Account Verification |
---|
80 | userEmailPasswordService.mailMessageFrom =nm-ibis.user.info@state.nm.us |
---|
81 | userEmailPasswordService.mailSubject =NM IBIS - Your MyData Account Password |
---|
82 | |
---|
83 | #----------------------------------- END OF FILE ----------------------------- |
---|