Changes between Version 8 and Version 9 of UbuntuConfiguringApache2ServerSSLProxy


Ignore:
Timestamp:
03.08.2012 11:55:32 (12 years ago)
Author:
Malte
Comment:

fixed typo, added "mod_auth_digest" to list of a2nmods, adapted dm4-webclient url

Legend:

Unmodified
Added
Removed
Modified
  • UbuntuConfiguringApache2ServerSSLProxy

    v8 v9  
    33= Configuring Apache2 Server as SSL Proxy with htdigest auth = 
    44 
    5 If you want to secure your DeepaMehta server e.g. on a public webserver, you should definitely consider secure https via SSL and and some sort of authentication. As DeepaMehta does not yet support these features natively, you can use an Apache2 Server and run it as an SSL proxy with htdigest authentication. Just follow these steps:   
     5If you want to secure your DeepaMehta server e.g. on a public webserver, you should definitely consider secure https via SSL and some sort of authentication. As DeepaMehta does not yet support these features natively, you can use an Apache2 Server and run it as an SSL proxy with htdigest authentication. Just follow these steps:   
    66 
    77 
     
    1212 0. Load the required modules 
    1313 {{{ 
    14  a2enmod ssl rewrite proxy proxy_http 
     14 a2enmod ssl rewrite proxy proxy_http mod_auth_digest 
    1515 }}} 
    1616 0. Create htdigest file with user and password 
     
    3232     
    3333    RewriteEngine On  
    34     RewriteRule ^/?$ http://localhost:8080/index.html [P]  
     34    RewriteRule ^/?$ http://localhost:8080/de.deepamehta.webclient [P]  
    3535     
    3636    ProxyRequests Off