0
Answered

Reverse Proxy

Christophe Pecquerie 9 years ago updated by Tom 9 years ago 3
Hi,
I've tested the reverse proxy feature with nginx without any success.
Could you share a sample config?
Thanks,
Christophe.
Hey Christophe. I have done this with nginx in the past but only using the Ajenti interface. Here are my notes for using Apache and its proxy modules only to proxy to Ubooquity and Calibre instances. Maybe it will help? Here, I use "/library" as the path for the Ubooquity instance on port 2202.
Under review
When I developped the reverse proxy feature, I tested it with the following Nginx config:
server {
listen 80;
location /bbb/ {
proxy_pass http://10.0.0.51:2202;
proxy_set_header Host $host;
} }
My Ubooquity server was running on "http://10.0.0.51:2202", configured with the reverse proxy string "bbb".
With this configuration, all request made to the Nginx server on port 80 were redirected to Ubooquity.

Let me know if you need more details.