26 lines
671 B
Plaintext
26 lines
671 B
Plaintext
Listen 8778
|
|
|
|
<VirtualHost *:8778>
|
|
WSGIProcessGroup placement-api
|
|
WSGIApplicationGroup %{GLOBAL}
|
|
WSGIPassAuthorization On
|
|
WSGIDaemonProcess placement-api processes=3 threads=1 user=placement group=placement
|
|
WSGIScriptAlias / /usr/bin/placement-api
|
|
<IfVersion >= 2.4>
|
|
ErrorLogFormat "%M"
|
|
</IfVersion>
|
|
ErrorLog /var/log/placement/placement-api.log
|
|
#SSLEngine On
|
|
#SSLCertificateFile ...
|
|
#SSLCertificateKeyFile ...
|
|
</VirtualHost>
|
|
|
|
Alias /placement-api /usr/bin/placement-api
|
|
<Location /placement-api>
|
|
SetHandler wsgi-script
|
|
Options +ExecCGI
|
|
WSGIProcessGroup placement-api
|
|
WSGIApplicationGroup %{GLOBAL}
|
|
WSGIPassAuthorization On
|
|
</Location>
|