Mercurial > odfcast
annotate apache-site.conf @ 94:2ef34abbad8d 1.5
Use http error code 422 in CheckView when a merge is not possible.
Previously the response used the code 500 in this case. This is not
useful because it's not an internal server error when the check whether
a PDF file can be merged fails because that's the point of the
CheckView. The code used now means "Unprocessable Entity" and fits
better.
Part of mpuls/issue6009
author | Bernhard Herzog <bh@intevation.de> |
---|---|
date | Fri, 28 Apr 2017 20:56:22 +0200 |
parents | bb2b32455a6b |
children |
rev | line source |
---|---|
79
bd3e5fdd8398
Add apache site configuraton file for odfcase as wsgi application.
Bernhard Herzog <bh@intevation.de>
parents:
diff
changeset
|
1 <VirtualHost localhost:5000> |
bd3e5fdd8398
Add apache site configuraton file for odfcase as wsgi application.
Bernhard Herzog <bh@intevation.de>
parents:
diff
changeset
|
2 ServerAdmin webmaster@localhost |
bd3e5fdd8398
Add apache site configuraton file for odfcase as wsgi application.
Bernhard Herzog <bh@intevation.de>
parents:
diff
changeset
|
3 |
bd3e5fdd8398
Add apache site configuraton file for odfcase as wsgi application.
Bernhard Herzog <bh@intevation.de>
parents:
diff
changeset
|
4 WSGIDaemonProcess odfcast processes=2 threads=30 python-path=/home/mpuls/odfcast/releases/current:/home/mpuls/odfcast/env/lib/python2.7/site-packages |
bd3e5fdd8398
Add apache site configuraton file for odfcase as wsgi application.
Bernhard Herzog <bh@intevation.de>
parents:
diff
changeset
|
5 WSGIProcessGroup odfcast |
bd3e5fdd8398
Add apache site configuraton file for odfcase as wsgi application.
Bernhard Herzog <bh@intevation.de>
parents:
diff
changeset
|
6 |
bd3e5fdd8398
Add apache site configuraton file for odfcase as wsgi application.
Bernhard Herzog <bh@intevation.de>
parents:
diff
changeset
|
7 WSGIScriptAlias / /home/mpuls/odfcast/releases/current/odfcast.wsgi |
bd3e5fdd8398
Add apache site configuraton file for odfcase as wsgi application.
Bernhard Herzog <bh@intevation.de>
parents:
diff
changeset
|
8 |
bd3e5fdd8398
Add apache site configuraton file for odfcase as wsgi application.
Bernhard Herzog <bh@intevation.de>
parents:
diff
changeset
|
9 ErrorLog /var/log/apache2/odfcast-error.log |
83 | 10 CustomLog /var/log/apache2/odfcast-access.log combined |
79
bd3e5fdd8398
Add apache site configuraton file for odfcase as wsgi application.
Bernhard Herzog <bh@intevation.de>
parents:
diff
changeset
|
11 </VirtualHost> |