Additional Blogs by SAP
cancel
Showing results for 
Search instead for 
Did you mean: 
hannes_kuehnemund
Active Contributor
0 Kudos

Remote and secure https Xen administration on port 8000

        ServerAdmin email@address.com

        ServerName fqdn.address.com

       

  1. DocumentRoot /var/www/xend/

        CustomLog /var/log/httpd/xend-access_log combined

        ErrorLog /var/log/httpd/xend-error_log

       

  1. PROXY

        ProxyRequests Off

        ProxyPreserveHost On

       

        SetEnv force-proxy-request-1.0 1

        SetEnv proxy-nokeepalive 1

        ProxyPass /xend http://localhost:8000/xend

        ProxyPassReverse /xend http://localhost:8000/xend

        ForceType text/html

       

  1. SSL

        SSLEngine on

        SSLProtocol all

        SSLCipherSuite ALL:!ADH:!EXPORT56:RC4RSA:HIGH:MEDIUM:LOW:SSLv2:EXP:+eNULL

        SSLCertificateFile /etc/httpd/cert/server.crt

        SSLCertificateKeyFile /etc/httpd/cert/server.key

If someone knows, how a workaround would look like, I'm really looking forward to see the solution. I played around using an additional perl or php wrapper in between, but this solution would be a dirty hack to cover fundamental errors in the xend http daemon.

1 Comment