| <VirtualHost 192.168.1.1:443> | |
| SSLEngine on | |
| SSLCipherSuite ALL:!ADH:!EXPORT56:RC4+RSA:+HIGH:+MEDIUM:+LOW:+SSLv2:+EXP | |
| SSLCertificateFile /etc/ssl/star.example.com.crt | |
| SSLCertificateKeyFile /etc/ssl/star.example.com.key | |
| ServerName "one.example.com" | |
| DocumentRoot "/var/www/html/one" | |
| CustomLog "/var/log/httpd/one-access.log" combined | |
| ErrorLog "/var/log/httpd/one-error.log" | |
| <Directory /var/www/html> | |
| AllowOverride none | |
| Order Allow,Deny | |
| Allow from all | |
| </Directory> | |
| </VirtualHost> | |
| <VirtualHost 192.168.1.2:443> | |
| SSLEngine on | |
| SSLCipherSuite ALL:!ADH:!EXPORT56:RC4+RSA:+HIGH:+MEDIUM:+LOW:+SSLv2:+EXP | |
| SSLCertificateFile /etc/ssl/star.example.com.crt | |
| SSLCertificateKeyFile /etc/ssl/star.example.com.key | |
| ServerName "tri.example.com" | |
| DocumentRoot "/var/www/html/one" | |
| CustomLog "/var/log/httpd/one-access.log" combined | |
| ErrorLog "/var/log/httpd/one-error.log" | |
| <Directory /var/www/html> | |
| AllowOverride none | |
| Order Allow,Deny | |
| Allow from all | |
| </Directory> | |
| </VirtualHost> | |
| <VirtualHost 192.168.1.3:443> | |
| SSLEngine on | |
| SSLCipherSuite ALL:!ADH:!EXPORT56:RC4+RSA:+HIGH:+MEDIUM:+LOW:+SSLv2:+EXP | |
| SSLCertificateFile /etc/ssl/star.example.com.crt | |
| SSLCertificateKeyFile /etc/ssl/star.example.com.key | |
| ServerName "tri.example.com" | |
| DocumentRoot "/var/www/html/one" | |
| CustomLog "/var/log/httpd/one-access.log" combined | |
| ErrorLog "/var/log/httpd/one-error.log" | |
| <Directory /var/www/html> | |
| AllowOverride none | |
| Order Allow,Deny | |
| Allow from all | |
| </Directory> | |
| </VirtualHost> |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment