No commit activity in last 3 years
No release in over 3 years
Translation proxy by wovnrb and WOVN.io.
2005
2006
2007
2008
2009
2010
2011
2012
2013
2014
2015
2016
2017
2018
2019
2020
2021
2022
2023
2024
 Dependencies

Development

~> 1.12
~> 5.9
~> 0.6
~> 10.0

Runtime

>= 1.6.4
~> 0.2
 Project Readme

Wovn::ReverseProxy

Translation proxy by wovnrb.

Installation

$ gem install wovn-reverse_proxy
$ wovnrp

Usage

Apache HTTP server

ProxyPass         / http://localhost:4567/
ProxyPassReverse  / http://localhost:4567/
ProxyPreserveHost on

RequestHeader set X_WOVN_HOST       http://localhost:3000
RequestHeader set X_WOVN_USER_TOKEN IRb6-
RequestHeader set X_WOVN_SECRET_KEY secret
RequestHeader set X_WOVN_USE_PROXY  true

nginx

proxy_pass       http://localhost:4567;
proxy_set_header X-Forwarded-Host $host;

proxy_set_header X-Wovn-Host       http://localhost:3000;
proxy_set_header X-Wovn-User-Token IRb6-;
proxy_set_header X-Wovn-Secret-Key secret;
proxy_set_header X-Wovn-Use-Proxy  true;

Contributing

Bug reports and pull requests are welcome on GitHub at https://github.com/masiuchi/wovn-reverse_proxy.