mirror of
https://gh.wpcy.net/https://github.com/WeblateOrg/weblate.git
synced 2026-05-24 09:20:46 +08:00
29 lines
815 B
ApacheConf
Vendored
29 lines
815 B
ApacheConf
Vendored
#
|
|
# VirtualHost for weblate
|
|
#
|
|
WSGIPythonPath /usr/share/weblate
|
|
# If using virtualenv, you need to add it to search path as well:
|
|
# WSGIPythonPath /usr/share/weblate:/path/to/your/venv/lib/python2.7/site-packages
|
|
<VirtualHost *:80>
|
|
ServerAdmin admin@image.weblate.org
|
|
ServerName image.weblate.org
|
|
|
|
Alias /robots.txt /usr/share/weblate/data/static/robots.txt
|
|
Alias /favicon.ico /usr/share/weblate/data/static/favicon.ico
|
|
|
|
Alias /static/ /usr/share/weblate/data/static/
|
|
|
|
<Directory /usr/share/weblate/data/static/>
|
|
Require all granted
|
|
</Directory>
|
|
|
|
WSGIScriptAlias / /usr/share/weblate/weblate/wsgi.py
|
|
WSGIPassAuthorization On
|
|
|
|
<Directory /usr/share/weblate/weblate>
|
|
<Files wsgi.py>
|
|
Require all granted
|
|
</Files>
|
|
</Directory>
|
|
|
|
</VirtualHost>
|