Added Firewall rule. Moved URLACL to its own file for ease of reading. Added auto service start back in now that the service is working correctly. #7
16 lines
716 B
XML
16 lines
716 B
XML
<?xml version="1.0" encoding="UTF-8"?>
|
|
<Wix xmlns="http://schemas.microsoft.com/wix/2006/wi"
|
|
xmlns:fire="http://schemas.microsoft.com/wix/FirewallExtension">
|
|
<Fragment>
|
|
<Component Id="DataCenterFirewallConfig" Directory="INSTALLFOLDER" KeyPath="yes" Guid="{7B874DAA-E2D6-493C-8EA8-2F6F3175E010}">
|
|
<fire:FirewallException Id="FwallEx"
|
|
Port="8800"
|
|
Description="Flexitime DataCenter API/Website Port"
|
|
Name="FlexitimeDataCenterException"
|
|
Protocol="tcp"
|
|
Scope="any"
|
|
Profile="all"/>
|
|
</Component>
|
|
</Fragment>
|
|
</Wix>
|