Skip to content

Instantly share code, notes, and snippets.

View ClaytonPeddy's full-sized avatar

Clayton C. Peddy ClaytonPeddy

  • San Francisco, CA
View GitHub Profile
@ClaytonPeddy
ClaytonPeddy / web.config
Created August 15, 2016 02:59
Play Framework on Azure App Service
<?xml version="1.0" encoding="UTF-8"?>
<configuration>
<system.webServer>
<handlers>
<add name="httpPlatformHandler" path="*" verb="*" modules="httpPlatformHandler" resourceType="Unspecified" />
</handlers>
<httpPlatform processPath="%HOME%\site\wwwroot\bin\play.bat"
arguments="-Dhttp.port=%HTTP_PLATFORM_PORT% -Dconfig.file=%HOME%\site\wwwroot\conf\application.conf -Dlogger.resource=logback.xml -Dpidfile.path=/dev/null"
startupRetryCount="1"
stdoutLogEnabled="true"