forked from aueb-wim/LORIS-for-MIP
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathloris.conf
35 lines (27 loc) · 995 Bytes
/
loris.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
# NameVirtualHost *
<VirtualHost *:80> # change from 80 to 443 if you enable SSL
ServerAdmin webmaster@localhost
DocumentRoot /var/www/loris/htdocs/
<Directory />
Options FollowSymLinks
AllowOverride All
</Directory>
<Directory /var/www/loris/htdocs/>
Options Indexes FollowSymLinks MultiViews
AllowOverride All
Order allow,deny
allow from all
</Directory>
php_value include_path .:/usr/share/php:/var/www/loris/project/libraries:/var/www/loris/php/libraries
#DirectoryIndex main.php index.html
ErrorLog /var/log/apache2/loris-error.log
# Possible values include: debug, info, notice, warn, error, crit,
# alert, emerg.
LogLevel warn
CustomLog /var/log/apache2/loris-access.log combined
ServerSignature Off
#SSLEngine Off # change to On to enable, after updating cert paths below
#SSLCertificateFile /etc/apache2/ssl/loris-cert.pem
#SSLCertificateKeyFile /etc/apache2/ssl/loris-key.pem
#SSLCACertificateFile /etc/apache2/ssl/CA-cacert.pem
</VirtualHost>