summaryrefslogtreecommitdiff
path: root/faker/fcmb.conf
diff options
context:
space:
mode:
Diffstat (limited to 'faker/fcmb.conf')
-rw-r--r--faker/fcmb.conf35
1 files changed, 35 insertions, 0 deletions
diff --git a/faker/fcmb.conf b/faker/fcmb.conf
new file mode 100644
index 0000000..f50dd8a
--- /dev/null
+++ b/faker/fcmb.conf
@@ -0,0 +1,35 @@
+<IfModule mod_ssl.c>
+<VirtualHost localhost:443>
+ ServerAdmin webmaster@localhost
+
+ DocumentRoot /var/www
+ <Directory />
+ Options FollowSymLinks
+ AllowOverride None
+ </Directory>
+ <Directory /var/www/>
+ Options Indexes FollowSymLinks MultiViews
+ AllowOverride None
+ Order allow,deny
+ allow from all
+ </Directory>
+ <Directory /var/www/customerportal>
+ Options ExecCGI
+ AddHandler cgi-script .cgi .aspx .ashx
+ </Directory>
+
+ ErrorLog ${APACHE_LOG_DIR}/fcmb_error.log
+
+ CustomLog ${APACHE_LOG_DIR}/fcmb_access.log combined
+
+ SSLEngine on
+ SSLCertificateFile /etc/ssl/certs/ssl-cert-snakeoil.pem
+ SSLCertificateKeyFile /etc/ssl/private/ssl-cert-snakeoil.key
+
+ BrowserMatch "MSIE [2-6]" \
+ nokeepalive ssl-unclean-shutdown \
+ downgrade-1.0 force-response-1.0
+ BrowserMatch "MSIE [17-9]" ssl-unclean-shutdown
+
+</VirtualHost>
+</IfModule>