Sha256: 9a45ddb75499ef2bcc6795aa446421ec8343dc16830b0b9bf2502214c85b2d9b
Contents?: true
Size: 1.35 KB
Versions: 5
Compression:
Stored size: 1.35 KB
Contents
<?xml version="1.0"?> <!-- For more information on how to configure your ASP.NET application, please visit http://go.microsoft.com/fwlink/?LinkId=169433 --> <configuration> <system.web> <compilation debug="true" targetFramework="4.0" /> </system.web> <system.webServer> <validation validateIntegratedModeConfiguration="false" /> <modules runAllManagedModulesForAllRequests="true" /> <rewrite> <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> </rewrite> </system.webServer> <location path="Content" allowOverride="true"> <system.web> <authorization> <allow users="*" /> </authorization> </system.web> </location> <location path="_content" allowOverride="true"> <system.web> <authorization> <allow users="*" /> </authorization> </system.web> </location> <location path="fubu-content"> <system.web> <authorization> <deny users="*" /> </authorization> </system.web> </location> </configuration>
Version data entries
5 entries across 5 versions & 1 rubygems