Skip to main content

Virtual Host

12th October, 2022

Updated: 12th October, 2022

    <VirtualHost 233.123.145.123:8001>
            ServerName www.blah.com
    
            SSLEngine on
            SSLProtocol all -SSLv2
    
            SSLCertificateKeyFile /home/blah/etc/ssl/www.blah.com.key
            SSLCertificateFile /home/blah/etc/ssl/www.blah.com.new.crt
            SSLCertificateChainFile /home/blah/etc/ssl/www.blah.com.new.ca
    
            <FilesMatch "\.(cgi|shtml|phtml|php)$">
                    SSLOptions +StdEnvVars
            </FilesMatch>
    
            BrowserMatch "MSIE [2-6]" \
                    nokeepalive ssl-unclean-shutdown \
                    downgrade-1.0 force-response-1.0
            BrowserMatch "MSIE [17-9]" ssl-unclean-shutdown
    
            DocumentRoot /home/blah/var/www/www.blah.com/htdocs/
    
            <Directory /home/blah/var/www/www.blah.com/htdocs/>
                    AllowOverride All
                    Order deny,allow
                    allow from all
            </Directory>
            ErrorLog /var/log/httpd/blah_error_log
    </VirtualHost>

    14924e1d-99df-4ecf-8bb0-59cf2c9673d3

    Created on: 12th October, 2022

    Last updated: 12th October, 2022

    Tagged With: