Skip to content

Instantly share code, notes, and snippets.

@nojaf
Created January 24, 2017 21:46
Show Gist options
  • Select an option

  • Save nojaf/4715a39c2fce978bc5da36e1c61cbf60 to your computer and use it in GitHub Desktop.

Select an option

Save nojaf/4715a39c2fce978bc5da36e1c61cbf60 to your computer and use it in GitHub Desktop.
Suave with custom port
module MyWebApi.Program
open Suave
open Suave.Successful
open System.Net
[<EntryPoint>]
let main argv =
let config =
{ defaultConfig with
bindings = [ HttpBinding.create HTTP IPAddress.Loopback 7000us ]
}
startWebServer config (OK "Hello World!")
0
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment