Changes between Version 1 and Version 2 of UbuntuConfiguringApache2ServerSSLProxy
- Timestamp:
- 02.09.2011 19:41:35 (13 years ago)
Legend:
- Unmodified
- Added
- Removed
- Modified
-
UbuntuConfiguringApache2ServerSSLProxy
v1 v2 3 3 = Configuring Apache2 Server as SSL Proxy with htdigest auth = 4 4 5 Load the required modules 6 {{{ 7 a2enmod ssl proxy proxy_http 8 }}} 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: 9 6 10 Create file ''deepamehta'' in ''/etc/apache2/sites-available'':11 7 12 {{{ 13 <VirtualHost *:443> 8 0. Load the required modules 9 {{{ 10 a2enmod ssl proxy proxy_http 11 }}} 12 0. Create file ''deepamehta'' in ''/etc/apache2/sites-available'': 13 {{{ 14 <VirtualHost *:443> 14 15 15 16 ServerName deepamehta.yourdomain.tld … … 45 46 </location> 46 47 47 </VirtualHost> 48 </VirtualHost> 49 }}} 50 0. Create link to ''/etc/apache2/sites-available/deepamehta'' in ''/etc/apache2/sites-enabled'' and restart the webserver ... 48 51 49 }}} 52 That's it! You can now securely connect to !https://deepamehta.your.domain.tld and will need to identify yourself with a username and password. 53 50 54 51 Create link to ''/etc/apache2/sites-available/deepamehta'' in ''/etc/apache2/sites-enabled'' and restart the webserver ...52