cloak/apache-config

14 lines
369 B
Plaintext
Executable File

<VirtualHost _default_:80>
ServerName cloak
ServerAdmin webmaster@localhost
WSGIScriptAlias /x "/home/freebsd/x/wsgi.py"
WSGIDaemonProcess x user=www group=www python-path="/home/freebsd/x"
<Directory "/home/freebsd/x">
WSGIProcessGroup x
WSGIApplicationGroup %{GLOBAL%}
Require all granted
</Directory>
</VirtualHost>