fix wsgi
All checks were successful
continuous-integration/drone/push Build is passing

This commit is contained in:
Jeffrey C. Ollie 2023-04-16 17:40:50 -05:00
parent c24191941e
commit b938492ed3
Signed by: jeff
GPG key ID: 6F86035A6D97044E

View file

@ -167,6 +167,9 @@
webserver = webserver =
let let
uwsgi = pkgs.uwsgi.override {
plugins = [ "python3" ];
};
uwsgi-ini = pkgs.writeTextFile { uwsgi-ini = pkgs.writeTextFile {
name = "uwsgi.ini"; name = "uwsgi.ini";
text = '' text = ''
@ -199,7 +202,7 @@
''; '';
config = { config = {
Cmd = [ Cmd = [
"${pkgs.uwsgi}/bin/uwsgi" "${uwsgi}/bin/uwsgi"
"${uwsgi-ini}" "${uwsgi-ini}"
]; ];
# Cmd = [ # Cmd = [