grafana-firewall.wxs.j2 731 B

12345678910111213141516171819
  1. <?xml version="1.0" encoding="utf-8"?>
  2. <Wix xmlns="http://schemas.microsoft.com/wix/2006/wi"
  3. xmlns:fire="http://schemas.microsoft.com/wix/FirewallExtension">
  4. <Fragment>
  5. <ComponentGroup Id="GrafanaFirewallExceptionsGroup">
  6. <Component Id="FirewallGrafanaServer" Guid="7278f07d-de6f-497f-9267-d5feb5216a5c" Directory="INSTALLDIR">
  7. <File KeyPath="yes" Source="SourceDir\grafana\bin\grafana-server.exe">
  8. <fire:FirewallException
  9. Id="FWX1"
  10. Name="Grafana Server TCP 3000"
  11. Port="3000"
  12. Profile="all"
  13. Protocol="tcp"
  14. Scope="any"/>
  15. </File>
  16. </Component>
  17. </ComponentGroup>
  18. </Fragment>
  19. </Wix>