简体   繁体   中英

Reverse Proxy redirecction http to https

I have a reverse proxy http to https. The page asks me for my username and password. However, when I enter my credentials it redirects me back to the home page. What I have to do to get inside?

This is my virtual host:

    NameVirtualHost *:80

    ServerName myserver
    CustomLog "logs/access_proxy_log" combined
    ProxyRequests off
    SSLproxyEngine On
    SSLProxyVerify none
    SSLProxyCheckPeerName off
    SSLProxyCheckPeerCN off
    ProxyPass /  https://direccionip/
    ProxyPassReverse /  https://direccionip/

此链接将帮助您轻松地从http到https 301。

The technical post webpages of this site follow the CC BY-SA 4.0 protocol. If you need to reprint, please indicate the site URL or the original address.Any question please contact:yoyou2525@163.com.

 
粤ICP备18138465号  © 2020-2024 STACKOOM.COM