2016-06-01 181 views
1

我有一個反向代理http https。該頁面要求我輸入用戶名和密碼。但是,當我輸入我的憑證時,它會將我重定向回主頁。我需要做些什麼才能進去?反向代理重定向http到https

這是我的虛擬主機:

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/ 

回答