Changes between Version 8 and Version 9 of UbuntuConfiguringApache2ServerSSLProxy
- Timestamp:
- 03.08.2012 11:55:32 (12 years ago)
Legend:
- Unmodified
- Added
- Removed
- Modified
-
UbuntuConfiguringApache2ServerSSLProxy
v8 v9 3 3 = Configuring Apache2 Server as SSL Proxy with htdigest auth = 4 4 5 If you want to secure your DeepaMehta server e.g. on a public webserver, you should definitely consider secure https via SSL and andsome 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:5 If 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: 6 6 7 7 … … 12 12 0. Load the required modules 13 13 {{{ 14 a2enmod ssl rewrite proxy proxy_http 14 a2enmod ssl rewrite proxy proxy_http mod_auth_digest 15 15 }}} 16 16 0. Create htdigest file with user and password … … 32 32 33 33 RewriteEngine On 34 RewriteRule ^/?$ http://localhost:8080/ index.html[P]34 RewriteRule ^/?$ http://localhost:8080/de.deepamehta.webclient [P] 35 35 36 36 ProxyRequests Off