13 lines
369 B
Text
Executable file
13 lines
369 B
Text
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>
|