rebrokenglass Posted April 21, 2008 Share Posted April 21, 2008 I am struggling with my share point reverse proxy. My http.conf has this: # rev proxy #LoadModule proxy_module modules/mod_proxy.so #LoadModule proxy_http_module modules/mod_proxy_http.so <VirtualHost docmanager> ProxyRequests Off ProxyVia On ServerName docmanager <Proxy *> Order Deny,Allow Allow from all </Proxy> ProxyPass /docmanager http://10.1.1.180/ ProxyPassReverse /docmanager http://10.1.1.180/ #RewriteEngine On #RewriteCond %{SERVER_PORT} !443 #RewriteRule ^(.*)$ https://urlhere.com/$1 [R,L] </VirtualHost> I also have this same configuration in my mods-enabled. For some reason it does nothing. The localhost running apache servers up an internal portal. I made a directory just in case called /docmanager. I should be able to reference this from the portal, but I am not able to, Apache just tells me that /docmanager is not found. Has anyone had any experience with reverse proxy and sharepoint? Is it as easy as it sounds? Quote Link to comment Share on other sites More sharing options...
steviewdr Posted April 22, 2008 Share Posted April 22, 2008 Yes, its very easy....when its setup correctly. You can even use a .htaccess file! See: http://wiki.kartbuilding.net/index.php/Apache#Apache_Rewrite_via_mod_proxy mkdir /home/user/public_html/internalweb vi /home/user/public_html/internalweb/.htaccess RewriteEngine on Rewriterule ^(.*)$ http://192.168.20.20/$1 [P] -steve Quote Link to comment Share on other sites More sharing options...
Recommended Posts
Join the conversation
You can post now and register later. If you have an account, sign in now to post with your account.