On Sun, Apr 2, 2017 at 9:00 PM, rhuddbiz <rhudd...@gmail.com> wrote:
> how can i specify a path for the python application behind nginx ?  we want
> to enable security with our existing ssl cert .  we have https://foo.com/
> and we want to forward https://foo.com/pgadmin/ to our python wrapper around
> pgadmin4.  unfortunately, the naive approach does not work as the href links
> all appear to be  absolute on the login page.  i'm hoping for a simple env
> variable.

With Apache I just do something like the following, and it just works
(the underlying Flask framework figures out the path prefix
automatically):

    WSGIDaemonProcess pgadmin processes=1 threads=25
    WSGIScriptAlias /pgadmin4 /opt/pgAdmin4/web/pgAdmin4.wsgi

    <Directory /opt/pgAdmin4/web>
        WSGIProcessGroup pgadmin
        WSGIApplicationGroup %{GLOBAL}
        Require all granted
    </Directory>

I'm afraid I don't know nginx well enough to suggest specifics for that server.

-- 
Dave Page
Blog: http://pgsnake.blogspot.com
Twitter: @pgsnake

EnterpriseDB UK: http://www.enterprisedb.com
The Enterprise PostgreSQL Company


-- 
Sent via pgadmin-support mailing list (pgadmin-support@postgresql.org)
To make changes to your subscription:
http://www.postgresql.org/mailpref/pgadmin-support

Reply via email to