I implement two-way SSL authentication and then additional authentication through Kerberos , after which I redirect the user to the internal server through a reverse proxy.
i.e:
SSL auth <--> Apache Server + kerberos auth using login/password <--reverse proxy-->> internal server
Currently this setting works:
Now my idea is to use this configuration as I can control user behavior through Tornado
SSL auth <--> Apache server <---> Tornado webserver for kerberos auth <---> reverse proxy <---> internal server
And I have SSL authentication and Kerberos authentication .
However, how can I tell Tornado about changing proxy(apache) to an internal server?
source share