diff options
author | makefu <github@syntax-fehler.de> | 2017-04-11 21:36:27 +0200 |
---|---|---|
committer | makefu <github@syntax-fehler.de> | 2017-04-11 21:36:27 +0200 |
commit | e0a423e1f0a228dbcaa70dd5037404608af8daeb (patch) | |
tree | fb765bdc7cca097e736a837d4594fc2290287806 /makefu/2configs/deployment/uwsgi.nix | |
parent | 63a35e7bd7a5f402d9c6805b9e6d13806b82b118 (diff) |
m 2 deployment/uwsgi: purge
Diffstat (limited to 'makefu/2configs/deployment/uwsgi.nix')
-rw-r--r-- | makefu/2configs/deployment/uwsgi.nix | 16 |
1 files changed, 0 insertions, 16 deletions
diff --git a/makefu/2configs/deployment/uwsgi.nix b/makefu/2configs/deployment/uwsgi.nix deleted file mode 100644 index 4ad9961f6..000000000 --- a/makefu/2configs/deployment/uwsgi.nix +++ /dev/null @@ -1,16 +0,0 @@ -{ config, lib, pkgs, ... }: -# more than just nginx config but not enough to become a module -with import <stockholm/lib>; -let - external-ip = config.krebs.build.host.nets.internet.ip4.addr; - wsgi-sock = "${config.services.uwsgi.runDir}/uwsgi.sock"; - elch-sock = "${config.services.uwsgi.runDir}/uwsgi-elch.sock"; -in { - - services.uwsgi = { - enable = true; - user = "nginx"; - plugins = [ "python2" ]; - instance.type = "emperor"; - }; -} |