-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathInstall-ProviderHostedApp-Config.xml
More file actions
31 lines (31 loc) · 1.7 KB
/
Copy pathInstall-ProviderHostedApp-Config.xml
File metadata and controls
31 lines (31 loc) · 1.7 KB
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
<?xml version="1.0" encoding="utf-8" ?>
<ProviderHostedApp>
<General>
<ServiceAccount>contoso\meetingmanager</ServiceAccount>
<FQDN>meetingmanager.contoso.com</FQDN>
<InstallationDirectory>C:\Program Files\Solutions2Share\Meeting Manager</InstallationDirectory>
<AllowOAuthoverHTTP>true</AllowOAuthoverHTTP>
</General>
<SharePoint>
<SPSite>https://portal2016.contoso.com</SPSite>
<!-- If Upgrading, please provide the ClientID otherwise a new one will generated -->
<ClientID/>
</SharePoint>
<Database>
<DBServer>Contoso-SQL\SP2016</DBServer>
<DBServerPort>1433</DBServerPort>
<!-- Currently it's not support to use Alias!
The script can create a SQL alias for you. Enter the DBInstance, and if you leave <DBPort> blank, script will assume default port value of 1433 -->
<DBAlias Create="false">
<DBInstance>Contoso-SQL\SP2016</DBInstance>
<DBPort>1433</DBPort>
</DBAlias>
<!-- The DBPrefix is prepended to all database names. e.g. If you set this to TEST, your config DB will be TEST_ConfigDB. If you set the prefix to localhost, script will prepend each database with the name of the server on which the script is run. Leave this blank for no prefix. NOTE: If you are installing a multi-server farm, it is recommended that you do not use localhost as services provisioned on different servers will have different prefixes. -->
<DBPrefix>PRD_App_</DBPrefix>
<!-- Valid Type = Generic or for Solutions2Share MM, MMHF, IM, IMHF -->
<Databasename Name="MeetingManager" Type="MM" />
<Databasename Name="MeetingManagerHangfire" Type="MMHF" />
<Databasename Name="InvitationManagerConfig" Type="IM" />
<Databasename Name="InvitationManagerHangfire" Type="IMHF" />
</Database>
</ProviderHostedApp>