koji-hub: adjust wsgi parameters to match upstream

We missed changing our local config when upstream made some wsgi
changes. This mostly results in confusing logs, but might have some
other unknown effects.

Signed-off-by: Kevin Fenzi <kevin@scrye.com>
This commit is contained in:
Kevin Fenzi 2023-12-04 09:15:38 -08:00
parent 64da337e67
commit f16a2ffb50

View file

@ -18,10 +18,15 @@ Alias /robots.txt /var/www/html/robots.txt
Require all granted
</Directory>
# Python 3 Cheetah expectes unicode everywhere, apache's default lang is C
# which is not sufficient to open our templates
WSGIDaemonProcess koji lang=C.UTF-8
<Directory "/usr/share/koji-web/scripts/">
Options ExecCGI
SetHandler wsgi-script
WSGIApplicationGroup %{GLOBAL}
WSGIProcessGroup koji
WSGIScriptReloading Off
Require all granted
</Directory>