-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathinstall.config.pp
46 lines (41 loc) · 1.25 KB
/
install.config.pp
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
<?xml version="1.0" encoding="utf-8" ?>
<config>
<environments>
<local>
<installdirectory>D:\apps\$DefaultNamespace$</installdirectory>
<iis>
<appName>$DefaultNamespace$</appName>
<appPoolName>$DefaultNamespace$.pool</appPoolName>
<appPoolDotNetVersion>v4.0</appPoolDotNetVersion>
<!-- application pool identity type can be specified. For values: https://msdn.microsoft.com/en-us/library/ms524908(v=vs.90).aspx
<appPoolIdentityType>0</appPoolIdentityType>
-->
<binding>
<type>http</type>
<hostname></hostname>
<ip>*</ip>
<port>80</port>
</binding>
<!-- https binding sample
<binding>
<type>https</type>
<thumbprint>thumprint of the certificate</thumbprint>
<hostname></hostname>
<ip>*</ip>
<port>443</port>
</binding>
-->
</iis>
<!--
<migrator>
<dbContextName>DbContextClassName</dbContextName>
</migrator>
-->
<!--<windowsservice>
<topshelf>
<executable>FastAccountService.exe</executable>
</topshelf>
</windowsservice>-->
</local>
</environments>
</config>