LinuxQuestions.org

LinuxQuestions.org (/questions/)
-   Linux - Server (https://www.linuxquestions.org/questions/linux-server-73/)
-   -   apache reverse proxy with ms sharepoint (https://www.linuxquestions.org/questions/linux-server-73/apache-reverse-proxy-with-ms-sharepoint-870160/)

malayo 03-22-2011 03:22 AM

apache reverse proxy with ms sharepoint
 
hi,

i'm trying to configure a reverse proxy server that can act as a reverse proxy for ms sharepoint server that uses https.

usually when i accessed the sharepoint server at https://sharepoint.mycompany.com, i will be prompted to enter active directory login.

but what was "500 internal server error" and in error.log:
failed to enable ssl support for 10.10.1.1 (sharepoint.mycompany.com)

Hobbits 03-22-2011 09:58 AM

Malayo,

I'm also trying to reverse proxy a sharepoint 2010 server. I can access the server from the internet (outside) but i'm unable te login. Did you manage the get a succesful apache setup?. My configuration so far is:

<VirtualHost 10.10.10.10:80>
ServerAdmin hostmaster@domain.nl
ServerName sub.domain.com
Redirect permanent / https://sub.domain.com
ErrorLog logs/sub.domain.com-error_log
CustomLog logs/sub.domain.com-access_log common
</VirtualHost>
<VirtualHost 10.10.10.10:443>
ServerAdmin hostmaster@domain.nl
ServerName sub.domain.com
# Redirect permanent / https://sub.domain.com
ErrorLog logs/ssl-sub.domain.com-error_log
CustomLog logs/ssl-sub.domain.com-access_log common

RequestHeader set Front-End-Https "On"

SSLEngine On
SSLProxyEngine On
RewriteEngine On

SSLCertificateFile /etc/httpd/conf/ssl/domain.crt
SSLCertificateKeyFile /etc/httpd/conf/ssl/domain.key
SSLCACertificateFile /etc/httpd/conf/ssl/ca-bundle.crt

ProxyRequests Off
ProxyPreserveHost On
ProxyPass / https://sub.domain.com
ProxyPassReverse / https://sub.domain.com

CacheDisable *

SetEnv force-proxy-request-1.0 1
SetEnv proxy-nokeepalive 1
</VirtualHost>


Hope you can help me.

malayo 03-22-2011 10:16 AM

not at the moment unfortunately


All times are GMT -5. The time now is 07:27 AM.