forked from bluecherrydvr/bluecherry-apps
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathapache.conf
46 lines (36 loc) · 1 KB
/
apache.conf
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
# !!! ATTENTION !!!
# this file used by both RPM and DEB packages
<IfModule mod_ssl.c>
Listen 7001
<VirtualHost *:7001>
ServerAdmin webmaster@localhost
DocumentRoot /usr/share/bluecherry/www
<Directory />
Options FollowSymLinks
AllowOverride None
</Directory>
<Directory /usr/share/bluecherry/www>
Options Indexes FollowSymLinks MultiViews
AllowOverride All
Order allow,deny
allow from all
Require all granted
</Directory>
<Files "mjpeg.php">
SetEnv downgrade-1.0
</Files>
ErrorLog __BLUECHERRY_APACHE_ERROR_LOG__
# Possible values include: debug, info, notice, warn, error, crit,
# alert, emerg.
LogLevel warn
CustomLog __BLUECHERRY_APACHE_ACCESS_LOG__ combined
# SSL
SSLEngine on
SSLCertificateFile __BLUECHERRY_APACHE_CERTIFICATE_FILE__
SSLCertificateKeyFile __BLUECHERRY_APACHE_CERTIFICATE_KEY_FILE__
BrowserMatch "MSIE [2-6]" \
nokeepalive ssl-unclean-shutdown \
downgrade-1.0 force-response-1.0
BrowserMatch "MSIE [17-9]" ssl-unclean-shutdown
</VirtualHost>
</IfModule>