Home: Remove Grocy.
This commit is contained in:
parent
0f1cda0058
commit
e41076f373
|
@ -9,7 +9,6 @@ let
|
|||
(mkBind "dkim" "/var/dkim")
|
||||
(mkBind "dovecot_index" "/var/lib/dovecot/indices")
|
||||
(mkBind "forgejo" "/var/lib/forgejo")
|
||||
(mkBind "grocy" "/var/lib/grocy")
|
||||
(mkBind "hass" "/var/lib/hass")
|
||||
(mkBind "jellyfin" "/var/lib/jellyfin")
|
||||
(mkBind "jellyfin_cache" "/var/cache/jellyfin")
|
||||
|
|
|
@ -1,17 +0,0 @@
|
|||
{ ... }:
|
||||
{
|
||||
services.grocy = {
|
||||
enable = true;
|
||||
# dataDir = "/var/lib/grocy";
|
||||
hostName = "stock.voronind.com";
|
||||
nginx.enableSSL = false;
|
||||
settings = {
|
||||
calendar = {
|
||||
firstDayOfWeek = 1;
|
||||
showWeekNumber = true;
|
||||
};
|
||||
culture = "en";
|
||||
currency = "RUB";
|
||||
};
|
||||
};
|
||||
}
|
|
@ -1,26 +0,0 @@
|
|||
{ config, lib, ... }:
|
||||
{
|
||||
"stock.voronind.com" = {
|
||||
locations."~ \\.php$".extraConfig = lib.mkForce ''
|
||||
allow 10.0.0.0/8;
|
||||
allow fd09:8d46:b26::/48;
|
||||
deny all;
|
||||
|
||||
fastcgi_split_path_info ^(.+\.php)(/.+)$;
|
||||
fastcgi_pass unix:${config.services.phpfpm.pools.grocy.socket};
|
||||
include ${config.services.nginx.package}/conf/fastcgi.conf;
|
||||
include ${config.services.nginx.package}/conf/fastcgi_params;
|
||||
'';
|
||||
|
||||
extraConfig = lib.mkForce ''
|
||||
listen 443 ssl;
|
||||
|
||||
ssl_certificate /etc/letsencrypt/live/voronind.com/fullchain.pem;
|
||||
ssl_certificate_key /etc/letsencrypt/live/voronind.com/privkey.pem;
|
||||
include /etc/letsencrypt/conf/options-ssl-nginx.conf;
|
||||
ssl_dhparam /etc/letsencrypt/conf/ssl-dhparams.pem;
|
||||
|
||||
try_files $uri /index.php;
|
||||
'';
|
||||
};
|
||||
}
|
|
@ -16,7 +16,6 @@ let
|
|||
(mkLink "Print" "fa-print" "https://print.voronind.com")
|
||||
(mkLink "Read" "fa-book" "https://read.voronind.com")
|
||||
(mkLink "Search" "fa-search" "https://search.voronind.com")
|
||||
(mkLink "Stock" "fa-boxes-stacked" "https://stock.voronind.com")
|
||||
(mkLink "Watch" "fa-film" "https://watch.voronind.com")
|
||||
(mkLink "YouTube" "fab fa-youtube" "https://yt.voronind.com")
|
||||
])
|
||||
|
|
Loading…
Reference in a new issue