summaryrefslogtreecommitdiffstats
path: root/makefu/2configs/deployment
diff options
context:
space:
mode:
authormakefu <github@syntax-fehler.de>2017-04-11 21:36:27 +0200
committermakefu <github@syntax-fehler.de>2017-04-11 21:36:27 +0200
commite0a423e1f0a228dbcaa70dd5037404608af8daeb (patch)
treefb765bdc7cca097e736a837d4594fc2290287806 /makefu/2configs/deployment
parent63a35e7bd7a5f402d9c6805b9e6d13806b82b118 (diff)
m 2 deployment/uwsgi: purge
Diffstat (limited to 'makefu/2configs/deployment')
-rw-r--r--makefu/2configs/deployment/uwsgi.nix16
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 4ad9961f..00000000
--- 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";
- };
-}