Skip to content

Instantly share code, notes, and snippets.

View betimd's full-sized avatar
💭
I may be slow to respond.

Betim D. betimd

💭
I may be slow to respond.
View GitHub Profile
@betimd
betimd / web.config
Last active December 8, 2016 08:30
Asp.Net Core Web Config file to deploy in AWS ElastinBeanstalk that will server requests just in HTTPS (redirect HTTP to S)
<?xml version="1.0" encoding="utf-8"?>
<configuration>
<system.webServer>
<handlers>
<add name="aspNetCore" path="*" verb="*" modules="AspNetCoreModule" resourceType="Unspecified"/>
</handlers>
<aspNetCore processPath="%LAUNCHER_PATH%" arguments="%LAUNCHER_ARGS%"
stdoutLogEnabled="false"
stdoutLogFile=".\logs\stdout"
forwardWindowsAuthToken="false"/>