Popularity
8.9
Declining
Activity
4.5
Growing
55
9
25
Monthly Downloads: 32
Programming language: Haskell
License: BSD 3-clause "New" or "Revised" License
Latest version: v0.6.0
http-reverse-proxy alternatives and similar packages
Based on the "http" category.
Alternatively, view http-reverse-proxy alternatives based on common mentions on social networks and blogs.
InfluxDB – Built for High-Performance Time Series Workloads
InfluxDB 3 OSS is now GA. Transform, enrich, and act on time series data directly in the database. Automate critical tasks and eliminate the need to move data externally. Download now.
Promo
www.influxdata.com

Do you think we are missing an alternative of http-reverse-proxy or a related project?
README
http-reverse-proxy
Provides a simple means of reverse-proxying HTTP requests. The raw approach uses the same technique as leveraged by keter, whereas the WAI approach performs full request/response parsing via WAI and http-conduit.
Raw example
The following sets up raw reverse proxying from local port 3000 to www.example.com, port 80.
{-# LANGUAGE OverloadedStrings #-}
import Network.HTTP.ReverseProxy
import Data.Conduit.Network
main :: IO ()
main = runTCPServer (serverSettings 3000 "*") $ \appData ->
rawProxyTo
(\_headers -> return $ Right $ ProxyDest "www.example.com" 80)
appData