ma 2 mycube: standalone version based on uwsgi

what a motherf*ckn pain
This commit is contained in:
makefu 2016-02-17 03:12:09 +01:00
parent 513b33e7a2
commit daaf21193a
2 changed files with 46 additions and 28 deletions

View File

@ -0,0 +1,46 @@
{ config, lib, pkgs, ... }:
# more than just nginx config but not enough to become a module
with config.krebs.lib;
let
hostname = config.krebs.build.host.name;
external-ip = head config.krebs.build.host.nets.internet.addrs4;
wsgi-sock = "${config.services.uwsgi.runDir}/uwsgi.sock";
in {
services.redis.enable = true;
services.uwsgi = {
enable = true;
user = "nginx";
plugins = [ "python2" ];
instance = {
type = "emperor";
vassals = {
mycube-flask = {
type = "normal";
python2Packages = self: with self; [ pkgs.mycube-flask self.flask self.redis self.werkzeug self.jinja2 self.markupsafe itsdangerous ];
socket = wsgi-sock;
};
};
};
};
krebs.nginx = {
enable = mkDefault true;
servers = {
mybox-connector-one = {
listen = [ "${external-ip}:80" ];
server-names = [
"mycube.connector.one"
"mybox.connector.one"
];
locations = singleton (nameValuePair "/" ''
uwsgi_pass unix://${wsgi-sock};
uwsgi_param UWSGI_CHDIR ${pkgs.mycube-flask}/${pkgs.python.sitePackages};
uwsgi_param UWSGI_MODULE mycube.websrv;
uwsgi_param UWSGI_CALLABLE app;
include ${pkgs.nginx}/conf/uwsgi_params;
'');
};
};
};
}

View File

@ -1,28 +0,0 @@
{ config, lib, pkgs, ... }:
with config.krebs.lib;
let
hostname = config.krebs.build.host.name;
external-ip = head config.krebs.build.host.nets.internet.addrs4;
in {
services.redis.enable = true;
krebs.nginx = {
enable = mkDefault true;
servers = {
mybox-connector-one = {
listen = [ "${external-ip}:80" ];
server-names = [
"mycube.connector.one"
"mybox.connector.one"
];
locations = singleton (nameValuePair "/" ''
proxy_set_header Host $host;
proxy_set_header X-Real-IP $remote_addr;
proxy_set_header X-Forwarded-For $proxy_add_x_forwarded_for;
proxy_pass http://localhost:8001/;
'');
};
};
};
}