This commit is contained in:
parent
c24191941e
commit
b938492ed3
1 changed files with 4 additions and 1 deletions
|
@ -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 = [
|
||||
|
|
Loading…
Reference in a new issue