25 lines
577 B
Plaintext
25 lines
577 B
Plaintext
<VirtualHost 0.0.0.0:8800>
|
|
|
|
ServerName ckan
|
|
|
|
# this is our app
|
|
WSGIScriptAlias / /etc/ckan/datapusher.wsgi
|
|
|
|
# pass authorization info on (needed for rest api)
|
|
WSGIPassAuthorization On
|
|
|
|
# Deploy as a daemon (avoids conflicts between CKAN instances)
|
|
WSGIDaemonProcess datapusher display-name=demo processes=1 threads=15
|
|
|
|
WSGIProcessGroup datapusher
|
|
|
|
ErrorLog /var/log/apache2/datapusher.error.log
|
|
CustomLog /var/log/apache2/datapusher.custom.log combined
|
|
|
|
<Directory "/" >
|
|
Require all granted
|
|
</Directory>
|
|
|
|
</VirtualHost>
|
|
|