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