Changes between Version 10 and Version 11 of UbuntuConfiguringApache2ServerSSLProxy
- Timestamp:
- 27.09.2013 18:23:13 (11 years ago)
Legend:
- Unmodified
- Added
- Removed
- Modified
-
UbuntuConfiguringApache2ServerSSLProxy
v10 v11 14 14 a2enmod ssl rewrite proxy proxy_http 15 15 }}} 16 0. Make sure that virtual hosts is enabled for ssl somewhere in your apache2 config. 17 {{{ 18 NameVirtualHost *:443 19 }}} 16 20 0. Create file ''deepamehta-ssl'' in ''/etc/apache2/sites-available'': 17 21 {{{ … … 20 24 ServerName deepamehta.yourdomain.tld 21 25 ServerAdmin postmaster@yourdomain.tld 26 DefaultType text/html 22 27 23 28 SSLEngine On … … 27 32 CustomLog /var/log/apache2/deepamehta-ssl-access.log combined 28 33 29 NameVirtualHost *:44330 31 DefaultType text/html32 33 34 RewriteEngine On 34 35 RewriteRule ^/?$ http://localhost:8080/de.deepamehta.webclient [P] 35 36 RewriteLog /var/log/apache2/deepamehta-ssl-rewrite.log 37 36 38 ProxyRequests Off 37 39 ProxyPreserveHost Off