hprox-0.1.0.1: README.md
## hprox
[](https://circleci.com/gh/bjin/hprox)
[](https://packdeps.haskellers.com/feed?needle=hprox)
[](https://github.com/bjin/hprox/releases)
[](https://hackage.haskell.org/package/hprox)
[](https://github.com/bjin/hprox/blob/master/LICENSE)
`hprox` is a lightweight HTTP/HTTPS proxy server.
### Features
* Basic HTTP proxy functionality.
* Simple password authentication.
* TLS encryption (requires a valid certificate). Supports TLS 1.3 and HTTP 2, also known as SPDY Proxy.
* TLS SNI validation (blocks all clients with invalid domain name).
* Provide PAC file for easy client side configuration (supports Chrome and Firefox).
* Websocket redirection (compatible with [v2ray-plugin for shadowsocks](https://github.com/shadowsocks/v2ray-plugin)).
* Reverse proxy support (redirect requests to a fallback server).
* Implemented as a middleware, compatible with any Haskell Web Application with `wai` interface.
Defaults to fallback to a dumb application which simulate the default empty page from Apache.
### Installation
`hprox` should build and work on all unix-like OS with `ghc` support, but it's only
been tested on Linux and macOS.
[stack](https://docs.haskellstack.org/en/stable/README/#how-to-install) is required to build `hprox`.
```sh
stack setup
stack install
```
### Usage
Use `hprox --help` to list options with detailed explanation.
* To run `hprox` on port 8080, with simple password authentication:
```sh
echo "user:pass" > userpass.txt
chmod 600 userpass.txt
hprox -p 8080 -a userpass.txt
```
* To run `hprox` with TLS encryption on port 443, with certificate of `example.com` obtained with [certbot](https://certbot.eff.org/):
```sh
hprox -p 443 -s example.com:/etc/letsencrypt/live/example.com/fullchain.pem:/etc/letsencrypt/live/example.com/privkey.pem
```
Browsers can then be configured with PAC file URL `https://example.com/get/hprox.pac`.
* To work with `v2ray-plugin`, with fallback page to ubuntu mirrors:
```sh
v2ray-plugin -server -localPort 8080 -mode websocket -host example.com -remotePort xxxx
hprox -p 443 -s example.com:fullchain.pem:privkey.pem --ws 127.0.0.1:8080 --rev archive.ubuntu.com:80
```
Clients will be able to connect with option `tls;host=example.com`.
### Known Issue
* Only HTTP servers are supported as websocket and reverse proxy redirection destination.
* Passwords are currently stored in plain text, please set permission accordingly and
avoid using existing password.
### License
`hprox` is licensed under the Apache license. See LICENSE file for details.