Fix Wallabag service
This commit is contained in:
parent
c12fdc15de
commit
d91f26bbe1
|
@ -16,12 +16,17 @@
|
||||||
user = "nginx";
|
user = "nginx";
|
||||||
group = "nginx";
|
group = "nginx";
|
||||||
settings = {
|
settings = {
|
||||||
"pm" = "dynamic";
|
"listen.owner" = config.services.nginx.user;
|
||||||
"pm.start_servers" = 2;
|
"listen.group" = config.services.nginx.group;
|
||||||
|
"listen.mode" = 600;
|
||||||
|
"pm" = "ondemand";
|
||||||
"pm.max_children " = 4;
|
"pm.max_children " = 4;
|
||||||
"pm.min_spare_servers " = 2;
|
|
||||||
"pm.max_spare_servers" = 4;
|
|
||||||
"pm.max_requests" = 32;
|
"pm.max_requests" = 32;
|
||||||
|
"env[WALLABAG_DATA]" = "/var/lib/wallabag";
|
||||||
};
|
};
|
||||||
|
phpEnv."PATH" = lib.makeBinPath [ pkgs.php ];
|
||||||
};
|
};
|
||||||
|
|
||||||
|
# Set environment variable pointing to wallabag configuration directory
|
||||||
|
environment.variables.WALLABAG_DATA = "/var/lib/wallabag";
|
||||||
}
|
}
|
||||||
|
|
|
@ -109,22 +109,28 @@
|
||||||
};
|
};
|
||||||
};
|
};
|
||||||
"wallabag.coolneng.duckdns.org" = {
|
"wallabag.coolneng.duckdns.org" = {
|
||||||
|
enableACME = true;
|
||||||
|
forceSSL = true;
|
||||||
root = "${pkgs.wallabag}/web";
|
root = "${pkgs.wallabag}/web";
|
||||||
locations."/" = { tryFiles = "$uri /app.php$is_args$args"; };
|
locations = {
|
||||||
locations."~ ^/app.php(/|$)" = {
|
"/".tryFiles = "$uri /app.php$is_args$args";
|
||||||
|
"/assets".root = "${config.environment.variables.WALLABAG_DATA}/web";
|
||||||
|
"~ ^/app.php(/|$)" = {
|
||||||
|
fastcgiParams = {
|
||||||
|
SCRIPT_FILENAME = "${pkgs.wallabag}/web/$fastcgi_script_name";
|
||||||
|
DOCUMENT_ROOT = "${pkgs.wallabag}/web";
|
||||||
|
};
|
||||||
extraConfig = ''
|
extraConfig = ''
|
||||||
include ${pkgs.nginx}/conf/fastcgi.conf;
|
fastcgi_pass unix:${config.services.phpfpm.pools.wallabag.socket};
|
||||||
fastcgi_pass unix:/run/phpfpm/wallabag.sock;
|
|
||||||
fastcgi_split_path_info ^(.+\.php)(/.*)$;
|
fastcgi_split_path_info ^(.+\.php)(/.*)$;
|
||||||
fastcgi_param SCRIPT_FILENAME $document_root$fastcgi_script_name;
|
include ${pkgs.nginx}/conf/fastcgi_params;
|
||||||
fastcgi_param WALLABAG_DATA /var/lib/wallabag/app;
|
|
||||||
fastcgi_param DOCUMENT_ROOT $realpath_root;
|
|
||||||
internal;
|
internal;
|
||||||
'';
|
'';
|
||||||
};
|
};
|
||||||
};
|
};
|
||||||
};
|
};
|
||||||
};
|
};
|
||||||
|
};
|
||||||
|
|
||||||
# ACME certs configuration
|
# ACME certs configuration
|
||||||
security.acme = {
|
security.acme = {
|
||||||
|
|
Loading…
Reference in New Issue