I recently setup a new web server and wanted an easy way to point a public site to an internal server. Fortunately this is very easy in IIS, download both the URL Rewrite module and the Application Request Routing module: http://www.iis.net/download/URLRewrite http://www.iis.net/download/ApplicationRequestRouting Then, in the …
Tag Archives: IIS
IIS 7 Reverse Proxy with the Application Request Routing module
Posted by dave on March 15, 2013
No comments
IIS URL Rewrite Rule to automatically point all traffic to a new location
Posted by dave on January 20, 2013
No comments
Using LDAP authentication with MediaWiki and IIS
Posted by dave on January 15, 2013
No comments
IIS ODBC SQL Logging
Posted by dave on January 23, 2012
No comments
IIS7 SSL Host Headers
Posted by dave on October 7, 2011
No comments
IIS URL Rewrite Rule HTTP to HTTPs
Posted by dave on July 18, 2011
No comments
Just a quick snippet for a url rewrite rule in IIS7: <rules> <rule name=”HTTP to HTTPS redirect” stopProcessing=”true”> <match url=”(.*)” /> <conditions> <add input=”{HTTPS}” pattern=”off” ignoreCase=”true” /> </conditions> <action type=”Redirect” redirectType=”Found” url=”https://{HTTP_HOST}/{R:1}” /> </rule> </rules> And if you want to …
PHP optimisation in Windows IIS
Posted by dave on February 18, 2011
No comments
Using hMailServer with RoundCube front end (DCOM Errors)
Posted by dave on December 17, 2010
No comments
I installed hMailserver and then installed the RoundCube front end. I then installed a few of the plugins (‘archive’, ‘settings’, ‘userinfo’, ‘emoticons’, ‘markasjunk’, ‘additional_message_headers’, ‘jqueryui’, ‘rss_feeds’, ‘google_contacts’, ‘hmail_password’) but was having an issue with the hmail_password plugin, which was fairly …