stockholm/lass/2configs/websites/lassulus.nix

145 lines
3.6 KiB
Nix
Raw Normal View History

{ config, pkgs, lib, ... }:
with lib;
let
2016-10-20 19:40:11 +00:00
inherit (import <stockholm/lib>)
2018-12-03 08:47:35 +00:00
genid_uint31
;
in {
imports = [
2017-08-01 18:47:34 +00:00
./default.nix
../git.nix
];
security.acme = {
certs."lassul.us" = {
allowKeysForGroup = true;
group = "lasscert";
};
};
krebs.tinc_graphs.enable = true;
users.users.lass-stuff = {
2018-12-03 08:47:35 +00:00
uid = genid_uint31 "lass-stuff";
description = "lassul.us blog cgi stuff";
home = "/var/empty";
};
services.phpfpm.poolConfigs."lass-stuff" = ''
listen = /var/run/lass-stuff.socket
user = lass-stuff
group = nginx
pm = dynamic
pm.max_children = 5
pm.start_servers = 1
pm.min_spare_servers = 1
pm.max_spare_servers = 1
listen.owner = lass-stuff
listen.group = nginx
php_admin_value[error_log] = 'stderr'
php_admin_flag[log_errors] = on
catch_workers_output = yes
security.limit_extensions =
'';
users.groups.lasscert.members = [
"dovecot2"
"ejabberd"
"exim"
"nginx"
];
2016-12-26 13:18:08 +00:00
services.nginx.virtualHosts."lassul.us" = {
2017-10-03 21:51:11 +00:00
addSSL = true;
2017-09-17 22:04:06 +00:00
enableACME = true;
2016-12-26 13:18:08 +00:00
locations."/".extraConfig = ''
root /srv/http/lassul.us;
'';
locations."= /retiolum-hosts.tar.bz2".extraConfig = ''
alias ${config.krebs.tinc.retiolum.hostsArchive};
'';
2017-05-09 20:45:49 +00:00
locations."= /retiolum.hosts".extraConfig = ''
2019-01-31 13:40:57 +00:00
alias ${pkgs.krebs-hosts-retiolum};
2017-05-09 20:45:49 +00:00
'';
2018-12-25 13:28:41 +00:00
locations."= /wireguard-key".extraConfig = ''
alias ${pkgs.writeText "prism.wg" config.krebs.hosts.prism.nets.wiregrill.wireguard.pubkey};
'';
2016-12-26 13:18:08 +00:00
locations."/tinc".extraConfig = ''
alias ${config.krebs.tinc_graphs.workingDir}/external;
'';
2018-09-09 10:07:13 +00:00
locations."/krebspage".extraConfig = ''
default_type "text/html";
alias ${pkgs.krebspage}/index.html;
'';
2017-01-17 15:24:36 +00:00
# TODO make this work!
2016-12-26 13:18:08 +00:00
locations."= /ddate".extraConfig = let
script = pkgs.writeBash "test" ''
echo "hello world"
'';
2018-09-15 23:46:46 +00:00
#script = pkgs.exec "ddate-wrapper" {
2016-12-26 13:18:08 +00:00
# filename = "${pkgs.ddate}/bin/ddate";
# argv = [];
#};
in ''
gzip off;
fastcgi_pass unix:/var/run/lass-stuff.socket;
include ${pkgs.nginx}/conf/fastcgi_params;
fastcgi_param DOCUMENT_ROOT /var/empty;
fastcgi_param SCRIPT_FILENAME ${script};
fastcgi_param SCRIPT_NAME ${script};
'';
2017-01-17 17:44:08 +00:00
locations."/init".extraConfig = let
initscript = pkgs.init.override {
pubkey = config.krebs.users.lass.pubkey;
};
in ''
alias ${initscript};
2017-01-17 15:24:36 +00:00
'';
2017-11-12 12:22:34 +00:00
locations."/pub".extraConfig = ''
alias ${pkgs.writeText "pub" config.krebs.users.lass.pubkey};
'';
locations."/pub1".extraConfig = ''
alias ${pkgs.writeText "pub" config.krebs.users.lass-mors.pubkey};
'';
};
2017-11-12 12:23:06 +00:00
security.acme.certs."cgit.lassul.us" = {
2017-12-13 17:30:34 +00:00
email = "lassulus@lassul.us";
webroot = "/var/lib/acme/acme-challenge";
2017-11-12 12:23:06 +00:00
plugins = [
"account_key.json"
"fullchain.pem"
2017-12-13 17:30:34 +00:00
"key.pem"
2017-11-12 12:23:06 +00:00
];
group = "nginx";
2017-12-13 17:30:34 +00:00
user = "nginx";
2017-11-12 12:23:06 +00:00
};
2016-12-26 13:18:08 +00:00
services.nginx.virtualHosts.cgit = {
serverName = "cgit.lassul.us";
2017-10-03 21:51:11 +00:00
addSSL = true;
2017-11-12 12:23:06 +00:00
sslCertificate = "/var/lib/acme/cgit.lassul.us/fullchain.pem";
sslCertificateKey = "/var/lib/acme/cgit.lassul.us/key.pem";
2017-12-13 17:30:34 +00:00
locations."/.well-known/acme-challenge".extraConfig = ''
root /var/lib/acme/acme-challenge;
'';
};
users.users.blog = {
2018-12-03 08:47:35 +00:00
uid = genid_uint31 "blog";
description = "lassul.us blog deployment";
home = "/srv/http/lassul.us";
useDefaultShell = true;
createHome = true;
openssh.authorizedKeys.keys = with config.krebs.users; [
lass.pubkey
lass-mors.pubkey
];
};
}