Skip to content
forked from SuaveIO/Suave.IIS

Set of helper functions for smooth running Suave.io web server on Internet Information Services (IIS)

Notifications You must be signed in to change notification settings

rarous/Suave.IIS

 
 

Repository files navigation

Suave IIS

Set of helper functions for smooth running Suave.io web server on Internet Information Services (IIS) without common issues like problems with routing on sub-apps, etc...

IIS Installation

To host Suave.io web application, you need to install HttpPlatformHandler (IIS addon that allows to use any http serving application). To install it start the Web Platform Installer (either from your start menu or from the right side actions in IIS Manager) and search for it.

Please note: To be able to enable it per-site, open IIS Manager and in the Feature View for the whole server, open Feature Delegation and enable Handlers Mappings as Read/Write.

Web application installation

Ok, we got IIS ready, now let`s install Nuget package:

Install-Package Suave.IIS

or using Paket

nuget Suave.IIS

To start using IIS helpers in Suave, create own filter functions based on Suave.IIS.Filters & set port to configuration using withPort function.

[<EntryPoint>]
let main argv =

    // use IIS related filter functions
    let path st = Suave.IIS.Filters.path argv st
    let pathScan format = Suave.IIS.Filters.pathScan argv format

    // routes
    let webpart =
    	choose [
        	path "/test" >=> OK "Look ma! Routing on sub-app on localhost"
            path "/" >=> OK "Hello from Suave on IIS"
        ]

    // start service server
    let config = { defaultConfig with bindings=[HttpBinding.mk HTTP IPAddress.Any 8083us]; } |> Suave.IIS.Configuration.withPort argv
    startWebServer config webpart
    0

The last thing we need for proper run on IIS is web.config

<?xml version="1.0" encoding="UTF-8"?>
<configuration>
  <system.webServer>
    <handlers>
      <remove name="httpplatformhandler" />
      <add name="httpplatformhandler" path="*" verb="*" modules="httpPlatformHandler" resourceType="Unspecified"/>
    </handlers>
    <httpPlatform
                  forwardWindowsAuthToken="true"
                  stdoutLogEnabled="true"
                  stdoutLogFile="myiiswebname.log"
                  startupTimeLimit="20"
                  processPath="C:\inetpub\wwwroot\myiiswebname\myiiswebname.exe"
                  arguments="%HTTP_PLATFORM_PORT% &quot;myiiswebname&quot;"/>
                  <!-- if running on http:https://localhost/myiiswebname -->
  </system.webServer>
</configuration>

IIS Application

Now create new web application on IIS:

IIS new web app

Copy all your build files into C:\inetpub\wwwroot\myiiswebnamemyiiswebname and navigate to http:https://localhost/myiiswebname. You should see your web application output now.

Good to know

  1. Maybe you didn`t notice, but using this library, you can still run Suave localy (from Visual Studio hitting F5 or FAKE script) - it there are no command line arguments, default setup is used, so you don`t need to change anything. Just use withPort and create custom filter functions based on Suave.IIS.Configuration.
  2. Only few (two, actually :)) filter functions are wrapped in Suave.IIS.Filters. If you need more of them, please feel free to send PR.

About

Set of helper functions for smooth running Suave.io web server on Internet Information Services (IIS)

Resources

Stars

Watchers

Forks

Packages

No packages published

Languages

  • F# 91.9%
  • Shell 4.7%
  • Batchfile 3.4%