Changeset 757

Show
Ignore:
Timestamp:
08/20/07 09:14:03 (1 year ago)
Author:
gnif
Message:

-CONFIGS:
* Changed the default site (ispcp) to listen on port 3400
* Added ssl support on port 3400 if mod_ssl is loaded

Files:

Legend:

Unmodified
Added
Removed
Modified
Copied
Moved
  • branches/ssl-addon/trunk/CHANGELOG

    r756 r757  
    77|               * setup: complete SSL support                     | 
    88\_________________________________________________________________/ 
     9 
     102007-08-20 Geoffrey McRae 
     11    - CONFIGS: 
     12        * Changed the default site (ispcp) to listen on port 3400 
     13        * Added ssl support on port 3400 if mod_ssl is loaded 
    914 
    10152007-08-20 Geoffrey McRae 
  • branches/ssl-addon/trunk/configs/apache/00_master.conf

    r748 r757  
    44# 
    55 
    6 <VirtualHost {BASE_SERVER_IP}:80> 
     6# Listen for https data 
     7
     8<IfModule mod_ssl.c> 
     9    Listen 443 
     10</IfModule> 
     11 
     12Listen 3400 
     13<VirtualHost {BASE_SERVER_IP}:3400> 
     14 
     15    <IfModule mod_ssl.c> 
     16        SSLEngine          On 
     17        SSLCertificateFile {ROOT_DIR}/ssl.key 
     18    </IfModule> 
    719 
    820    ServerAdmin     {DEFAULT_ADMIN_ADDRESS} 
  • branches/ssl-addon/trunk/configs/apache/parts/dmn_entry.tpl

    r748 r757  
    2323    ErrorDocument 503 /errors/503.html 
    2424 
    25     Redirect /ispcp http://{BASE_SERVER_VHOST} 
     25    <IfModule mod_ssl.c> 
     26        Redirect /ispcp https://{BASE_SERVER_VHOST}:3400 
     27    </IfModule> 
     28 
     29    <IfModule !mod_ssl.c> 
     30        Redirect /ispcp http://{BASE_SERVER_VHOST}:3400 
     31    </IfModule> 
    2632 
    2733    <IfModule mod_cband.c> 
  • branches/ssl-addon/trunk/docs/Debian/debian-packages-etch

    r746 r757  
    1 apache2 
     1pache2 
    22apache2-mpm-worker 
    33apache2.2-common 
     
    7878libnet-libidn-perl 
    7979libapache2-mod-cband 
     80openssl 
     81ca-certificates 
  • branches/ssl-addon/trunk/docs/Debian/debian-packages-lenny

    r748 r757  
    7474libnet-libidn-perl 
    7575libapache2-mod-cband 
     76openssl 
     77ca-certificates 
  • branches/ssl-addon/trunk/docs/Debian/debian-packages-sarge

    r739 r757  
    7575bash 
    7676libnet-libidn-perl 
     77openssl 
     78ca-certificates