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 =
let
uwsgi = pkgs.uwsgi.override {
plugins = [ "python3" ];
};
uwsgi-ini = pkgs.writeTextFile {
name = "uwsgi.ini";
text = ''
@ -199,7 +202,7 @@
'';
config = {
Cmd = [
"${pkgs.uwsgi}/bin/uwsgi"
"${uwsgi}/bin/uwsgi"
"${uwsgi-ini}"
];
# Cmd = [