FlexitimeTracker/DataCenter_Windows/WindowsDataCenter/WebApiServerHostInstaller/DataCenterFirewallConfiguration.wxs
Chris.Watts90@outlook.com c81d5be73a Added the missing files from the Ninject cyclic dependency fix.
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
2017-02-17 10:29:26 +00:00

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>