12 lines
502 B
Plaintext
12 lines
502 B
Plaintext
<VirtualHost * :<%= scope.lookupvar('::mercy::port') %>>
|
|
ServerName <%= scope.lookupvar('::fqdn') %>
|
|
WSGIDaemonProcess mercy user=<%= scope.lookupvar('::mercy::process_user') %> group=<%= scope.lookupvar('::mercy::process_group') %> threads=<%= scope.lookupvar('::mercy::process_threads') %>
|
|
WSGIScriptAlias / /opt/mercy/scripts/mercy.wsgi
|
|
|
|
<Directory /opt/mercy>
|
|
WSGIProcessGroup mercy
|
|
WSGIApplicationGroup %{GLOBAL}
|
|
Order deny, allow
|
|
Allow from all
|
|
</Directory>
|
|
</VirtualHost> |