Forked mumble-django project from https://bitbucket.org/Svedrin/mumble-django
You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
22 lines
752 B
22 lines
752 B
|
|
# This is an example configuration file for Apache2 that creates
|
|
# a dedicated VirtualHost specifically for mumble-django. This is the
|
|
# recommended setup.
|
|
|
|
<VirtualHost *:80>
|
|
ServerName example.com
|
|
ServerAlias www.example.com
|
|
|
|
Alias /static/ /srv/mumble-django/htdocs/
|
|
|
|
# for Debian squeeze(unstable)
|
|
Alias /media/ /usr/share/pyshared/django/contrib/admin/media/
|
|
# if self-installed using setup.py
|
|
#Alias /media/ /usr/lib/python2.4/site-packages/django/contrib/admin/media/
|
|
#Alias /media/ /usr/lib/python2.5/site-packages/django/contrib/admin/media/
|
|
|
|
WSGIScriptAlias / /srv/mumble-django/mumble-django.wsgi
|
|
WSGIDaemonProcess mumble-django threads=25
|
|
WSGIProcessGroup mumble-django
|
|
WSGIScriptReloading Off
|
|
</VirtualHost>
|