Swyx Control Center 3.25 / 13.25 with Windows Server 2012 R2
In order to be able to run Swyx Control Center on Windows Server 2012 R2 following changes need to be done:
- Install or update to Swyx Control Center (SCC) to the version 3.25 / 13.25
- Install the IIS URL-Rewrite Modul from Microsoft: https://www.iis.net/downloads/microsoft/url-rewrite
- Open 'web.config' file located under: C:\Program Files (x86)\Swyx\Swyx Control Center\
- Replace following lines (379-383):
Original:
<security>
<requestFiltering removeServerHeader="true">
<requestLimits maxAllowedContentLength="52428800"/>
</requestFiltering>
</security>
New:
<rewrite>
<outboundRules>
<rule name="Remove RESPONSE_Server">
<match serverVariable="RESPONSE_Server" pattern=".+" />
<action type="Rewrite" value="SwyxControlCenter" />
</rule>
</outboundRules>
</rewrite>
- Restart the IIS (Open CMD as Administrator and use command iisreset /restart )