Hi Friends,

I have the below Reverse Proxy setup. I am also doing caching for a few folders 
which serve static content.
It is working fine for HTTP URLs.

I have to now enable this proxy approach for HTTPS on both URLs. I will now 
have https://mysite.com and https://mysite.intranet.com.
Is there any guide available which can help with the steps required?
Will the below configuration need changes for HTTPS proxy or HTTPS caching?

########################################################################################
<VirtualHost 1.2.3.4:80>
    ServerName mysite.com
        ProxyPass / http://mysite.intranet. com/
        ProxyPassReverse / http://mysite.intranet. com/
        ProxyPassReverse / http://mysite.intranet. com:80/

        <IfModule mod_cache.c>
                CacheDefaultExpire 3600

                #Cache static file paths
                CacheEnable disk /css/
                CacheEnable disk /javascript/


                CacheRoot "E:/cache/"
                CacheDirLevels 2
                CacheDirLength 1
                CacheMaxFileSize 1000000
                CacheMinFileSize 1
                CacheIgnoreCacheControl On
                CacheIgnoreNoLastMod On
                CacheIgnoreQueryString Off
                CacheIgnoreHeaders None
                CacheLastModifiedFactor 0.1
                CacheDefaultExpire 3600
                CacheMaxExpire 86400
                CacheStoreNoStore On
                CacheStorePrivate On
        </IfModule>
##########################################################################################

______________________________
Sudip Kumar Bhattacharya

This e-mail (and any attachments), is confidential and may be privileged. It 
may be read, copied and used only
by intended recipients. Unauthorized access to this e-mail (or attachments) and 
disclosure or copying of its 
contents or any action taken in reliance on it is unlawful. Unintended 
recipients must notify the sender immediately 
by e-mail/phone & delete it from their system without making any copies or 
disclosing it to a third person.


---------------------------------------------------------------------
To unsubscribe, e-mail: users-unsubscr...@httpd.apache.org
For additional commands, e-mail: users-h...@httpd.apache.org

Reply via email to