Changes between Version 10 and Version 11 of UbuntuConfiguringApache2ServerSSLProxy


Ignore:
Timestamp:
27.09.2013 18:23:13 (11 years ago)
Author:
JuergeN
Comment:

--

Legend:

Unmodified
Added
Removed
Modified
  • UbuntuConfiguringApache2ServerSSLProxy

    v10 v11  
    1414 a2enmod ssl rewrite proxy proxy_http 
    1515 }}} 
     16 0. Make sure that virtual hosts is enabled for ssl somewhere in your apache2 config. 
     17 {{{ 
     18 NameVirtualHost *:443 
     19 }}} 
    1620 0. Create file ''deepamehta-ssl'' in ''/etc/apache2/sites-available'': 
    1721 {{{ 
     
    2024    ServerName deepamehta.yourdomain.tld 
    2125    ServerAdmin postmaster@yourdomain.tld 
     26    DefaultType text/html 
    2227 
    2328    SSLEngine On 
     
    2732    CustomLog /var/log/apache2/deepamehta-ssl-access.log combined 
    2833     
    29     NameVirtualHost *:443 
    30  
    31     DefaultType text/html 
    32  
    3334    RewriteEngine On  
    3435    RewriteRule ^/?$ http://localhost:8080/de.deepamehta.webclient [P]  
    35      
     36    RewriteLog /var/log/apache2/deepamehta-ssl-rewrite.log     
     37 
    3638    ProxyRequests Off 
    3739    ProxyPreserveHost Off