kanboard: move away from podman because of nftables and podman bug
This commit is contained in:
parent
23a5062f7b
commit
6416be37f5
|
@ -1,33 +1,65 @@
|
||||||
{ config, pkgs, ... }:
|
{ pkgs, config, lib, ... }:
|
||||||
let
|
let
|
||||||
domain = "kanboard.${config.networking.domain}";
|
domain = "kanboard.${config.networking.domain}";
|
||||||
domain_short = "kb.${config.networking.domain}";
|
domain_short = "kb.${config.networking.domain}";
|
||||||
|
user = "kanboard";
|
||||||
|
group = "kanboard";
|
||||||
in
|
in
|
||||||
{
|
{
|
||||||
sops.secrets."kanboard_env" = { };
|
users.users.${user} = {
|
||||||
|
group = group;
|
||||||
virtualisation.oci-containers = {
|
isSystemUser = true;
|
||||||
containers.kanboard = {
|
|
||||||
image = "ghcr.io/kanboard/kanboard:v1.2.39";
|
|
||||||
volumes = [
|
|
||||||
"kanboard_data:/var/www/app/data"
|
|
||||||
"kanboard_plugins:/var/www/app/plugins"
|
|
||||||
];
|
|
||||||
ports = [ "127.0.0.1:8045:80" ];
|
|
||||||
environmentFiles = [
|
|
||||||
config.sops.secrets."kanboard_env".path
|
|
||||||
];
|
|
||||||
};
|
};
|
||||||
|
users.groups.${group} = { };
|
||||||
|
|
||||||
|
services.phpfpm.pools.kanboard = {
|
||||||
|
user = "kanboard";
|
||||||
|
group = "kanboard";
|
||||||
|
settings = {
|
||||||
|
"listen.owner" = config.services.nginx.user;
|
||||||
|
"pm" = "dynamic";
|
||||||
|
"pm.max_children" = 32;
|
||||||
|
"pm.max_requests" = 500;
|
||||||
|
"pm.start_servers" = 2;
|
||||||
|
"pm.min_spare_servers" = 2;
|
||||||
|
"pm.max_spare_servers" = 5;
|
||||||
|
"php_admin_value[error_log]" = "stderr";
|
||||||
|
"php_admin_flag[log_errors]" = true;
|
||||||
|
"catch_workers_output" = true;
|
||||||
|
};
|
||||||
|
phpEnv."PATH" = lib.makeBinPath [ pkgs.php ];
|
||||||
};
|
};
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
services.nginx.enable = true;
|
||||||
services.nginx = {
|
services.nginx = {
|
||||||
virtualHosts."${domain_short}" = {
|
virtualHosts."${domain_short}" = {
|
||||||
locations."/".return = "301 $scheme://${domain}$request_uri";
|
locations."/".return = "301 $scheme://${domain}$request_uri";
|
||||||
};
|
};
|
||||||
|
|
||||||
virtualHosts."${domain}" = {
|
virtualHosts."${domain}" = {
|
||||||
locations."/" = {
|
root = "/srv/web/kanboard";
|
||||||
proxyPass = "http://127.0.0.1:8045";
|
extraConfig = ''
|
||||||
|
index index.html index.php;
|
||||||
|
'';
|
||||||
|
|
||||||
|
locations = {
|
||||||
|
"/" = {
|
||||||
|
tryFiles = "$uri $uri/ =404";
|
||||||
|
};
|
||||||
|
"~ \.php$" = {
|
||||||
|
extraConfig = ''
|
||||||
|
try_files $uri =404;
|
||||||
|
fastcgi_pass unix:${config.services.phpfpm.pools.kanboard.socket};
|
||||||
|
fastcgi_split_path_info ^(.+\.php)(/.+)$;
|
||||||
|
fastcgi_index index.php;
|
||||||
|
include ${pkgs.nginx}/conf/fastcgi_params;
|
||||||
|
include ${pkgs.nginx}/conf/fastcgi.conf;
|
||||||
|
fastcgi_param SCRIPT_FILENAME $document_root/$fastcgi_script_name;
|
||||||
|
'';
|
||||||
|
};
|
||||||
|
"/data".return = "403";
|
||||||
};
|
};
|
||||||
};
|
};
|
||||||
};
|
};
|
||||||
|
|
Loading…
Reference in a new issue