Zotonic

Requirements:

Erlang, Zotonic. Erlang need to be installed on a server, where application will be deployed. Zotonic could be installed under web site on development machine and deployed later to the server.

web.config

<?xml version="1.0" encoding="UTF-8"?>
<configuration>
  <system.webServer>

    <heliconZoo>
      <application name="zotonic.project">
            <environmentVariables>
                <add name="ZOTONIC_IP" value="%HOST%" />
                <add name="ZOTONIC_PORT" value="%PORT%" />
            </environmentVariables>
          </application>
    </heliconZoo>

    <handlers>
      <add name="zotonic.project#x86" scriptProcessor="zotonic.http" 
        path="*" verb="*" modules="HeliconZoo_x86" 
        preCondition="bitness32" resourceType="Unspecified" 
        requireAccess="Script" />
      <add name="zotonic.project#x64" scriptProcessor="zotonic.http" 
        path="*" verb="*" modules="HeliconZoo_x64" 
        preCondition="bitness64" resourceType="Unspecified"
        requireAccess="Script" />
    </handlers>

  </system.webServer>
</configuration>