scotty-tls: TLS for Scotty

[ bsd3, library, web ] [ Propose Tags ]

Run your Scotty apps over TLS


[Skip to Readme]

Modules

[Index]

Downloads

Maintainer's Corner

Package maintainers

For package maintainers and hackage trustees

Candidates

  • No Candidates
Versions [RSS] 0.1.0.0, 0.3.0.0, 0.4.0, 0.4.1
Change log CHANGELOG.md
Dependencies base (>=4.3.1 && <5), scotty (>=0.10.0), transformers (>=0.3.0.0), wai (>=1.3.0.1), warp (>=1.3.4.1), warp-tls (>=1.4.1.4) [details]
License BSD-3-Clause
Author David Johnson
Maintainer djohnson.m@gmail.com
Category Web
Home page https://github.com/dmjio/scotty-tls.git
Source repo head: git clone git://github.com/dmjio/scotty-tls.git
Uploaded by DavidJohnson at 2015-10-28T17:28:50Z
Distributions
Reverse Dependencies 2 direct, 0 indirect [details]
Downloads 3765 total (10 in the last 30 days)
Rating (no votes yet) [estimated by Bayesian average]
Your Rating
  • λ
  • λ
  • λ
Status Docs available [build log]
Last success reported on 2015-10-30 [all 1 reports]

Readme for scotty-tls-0.4.1

[back to package description]

Scotty-TLS

You can test by generating a self-signed certificate here.

cabal update && cabal install scotty-tls
{-# LANGUAGE OverloadedStrings #-}

import           Data.Monoid    (mconcat)
import           Web.Scotty
import           Web.Scotty.TLS

main :: IO ()
main = scottyTLS 3000 "server.key" "server.crt" $ do
         get "/:word" $ do
             beam <- param "word"
             html $ mconcat ["<h1>Scotty, ", beam, " me up!</h1>"]