21 lines
557 B
Plaintext
21 lines
557 B
Plaintext
<VirtualHost *:80>
|
|
# Uncomment if libapache2-mod-xsendfile is installed
|
|
# XSendFile On
|
|
# XSendFileAllowAbove On
|
|
|
|
WSGIScriptAlias / /usr/share/mayan/mayan/wsgi/dispatch.wsgi
|
|
|
|
<Directory /usr/share/mayan/mayan>
|
|
Order deny,allow
|
|
Allow from all
|
|
</Directory>
|
|
ErrorLog /var/log/apache2/mayan_error.log
|
|
LogLevel warn
|
|
CustomLog /var/log/apache2/mayan_access.log combined
|
|
|
|
Alias /mayan-static "/usr/share/mayan/mayan/static/"
|
|
<Location "/static">
|
|
SetHandler None
|
|
</Location>
|
|
</VirtualHost>
|