keter/keter.cabal
root 03dbc0807d Built-in reverse proxy now supports rewriting headers
This is necessary for using Keter as a front-end to other web
services that may require hacks like Jenkins does, where the
"Location" header needs to be rewritten to use https on every
response.

Example:

```
root: ..
port: 80
ssl:
  # host:
  port:
  key:
  certificate:
reverse-proxy:
  - reversed-host: jenkins-internal.corp.example.com
    reversed-port: 8080
    reversing-host: jenkins.example.com
    ssl: False
    rewrite-response:
      - header: Location
        from: ^http://jenkins.example.com
        to: https://jenkins.example.com
```
2013-03-20 00:01:43 -05:00

81 lines
3.4 KiB
Plaintext

Name: keter
Version: 0.3.5.3
Synopsis: Web application deployment manager, focusing on Haskell web frameworks
Description:
Handles deployment of web apps, providing a reverse proxy to achieve zero downtime deployments. For more information, please see the README on Github: <https://github.com/snoyberg/keter#readme>
.
Release history:
.
[0.3.5] You can now create Keter bundles without any applications. These can contain static hosts and redirects.
Homepage: http://www.yesodweb.com/
License: MIT
License-file: LICENSE
Author: Michael Snoyman
Maintainer: michael@snoyman.com
Category: Web, Yesod
Build-type: Simple
Cabal-version: >=1.8
Library
Build-depends: base >= 4 && < 5
, directory
, bytestring
, text
, containers
, transformers
, process
, random
, data-default
, filepath
, zlib
, network
, time
, tar >= 0.4
, template-haskell
, blaze-builder >= 0.3 && < 0.4
, yaml >= 0.7 && < 0.9
, unix-compat >= 0.3 && < 0.5
, hinotify >= 0.3 && < 0.4
, system-filepath >= 0.4 && < 0.5
, system-fileio >= 0.3 && < 0.4
, conduit >= 0.5
, network-conduit >= 0.6
, network-conduit-tls >= 0.6
, http-reverse-proxy >= 0.1.0.2 && < 0.2
, unix-process-conduit >= 0.2 && < 0.3
, unix >= 2.5 && < 2.7
, wai-app-static >= 1.3 && < 1.4
, wai >= 1.3 && < 1.5
, http-types
, regex-tdfa >= 1.1
, attoparsec >= 0.10
, http-conduit >= 1.9
, case-insensitive
, array
Exposed-Modules: Keter.Process
Keter.ProcessTracker
Keter.Postgres
Keter.TempFolder
Keter.App
Keter.Main
Keter.Prelude
Keter.LogFile
Keter.Logger
Keter.Proxy
Keter.PortManager
Keter.SSL
Keter.ReverseProxy
c-sources: cbits/process-tracker.c
ghc-options: -Wall
Executable keter
Main-is: keter.hs
hs-source-dirs: main
Build-depends: base, keter
ghc-options: -threaded -Wall
other-modules: Paths_keter
source-repository head
type: git
location: https://github.com/snoyberg/keter