http-proxy 0.0.9 → 0.0.10
raw patch · 2 files changed
+3/−2 lines, 2 files
Files
- Network/HTTP/Proxy.hs +2/−1
- http-proxy.cabal +1/−1
Network/HTTP/Proxy.hs view
@@ -743,7 +743,8 @@ (80, False) -> mempty (443, True) -> mempty (n, _) -> fromString (":" ++ show n)- urlStr = "http://" `mappend` serverName req+ urlStr = (if isSecure req then "https://" else "http://")+ `mappend` serverName req `mappend` portStr `mappend` rawPathInfo req `mappend` rawQueryString req
http-proxy.cabal view
@@ -1,5 +1,5 @@ Name: http-proxy-Version: 0.0.9+Version: 0.0.10 License: BSD3 License-file: LICENSE Author: Michael Snoyman, Stephen Blackheath, Erik de Castro Lopo