Changes between Version 1 and Version 2 of UbuntuConfiguringApache2ServerSSLProxy


Ignore:
Timestamp:
02.09.2011 19:41:35 (13 years ago)
Author:
JuergeN
Comment:

--

Legend:

Unmodified
Added
Removed
Modified
  • UbuntuConfiguringApache2ServerSSLProxy

    v1 v2  
    33= Configuring Apache2 Server as SSL Proxy with htdigest auth = 
    44 
    5 Load the required modules 
    6 {{{ 
    7 a2enmod ssl proxy proxy_http 
    8 }}} 
     5If 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:   
    96 
    10 Create file ''deepamehta'' in ''/etc/apache2/sites-available'': 
    117 
    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> 
    1415     
    1516    ServerName deepamehta.yourdomain.tld 
     
    4546    </location> 
    4647 
    47 </VirtualHost> 
     48 </VirtualHost> 
     49 }}} 
     50 0. Create link to ''/etc/apache2/sites-available/deepamehta'' in ''/etc/apache2/sites-enabled'' and restart the webserver ... 
    4851 
    49 }}} 
     52That'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  
    5054 
    51 Create link to ''/etc/apache2/sites-available/deepamehta'' in ''/etc/apache2/sites-enabled'' and restart the webserver ... 
    52