fix sigsegv error and dashboard not loading
This commit is contained in:
parent
13b2e94ee4
commit
454bc1ee4c
1 changed files with 9 additions and 8 deletions
|
|
@ -55,9 +55,9 @@
|
||||||
[ "CDN" "http://10.3.14.217:3000/" ]
|
[ "CDN" "http://10.3.14.217:3000/" ]
|
||||||
];
|
];
|
||||||
services = [
|
services = [
|
||||||
[ "PocketID" "si:authentik" "https://auth.satr14.my.id" "http://main.dns.satr14.my.id:1411/" ]
|
[ "PocketID" "authentik" "https://auth.satr14.my.id" "http://main.dns.satr14.my.id:1411/" ]
|
||||||
[ "2FAuth" "si:authy" "https://2fa.satr14.my.id" "http://main.dns.satr14.my.id:8090/" ]
|
[ "2FAuth" "authy" "https://2fa.satr14.my.id" "http://main.dns.satr14.my.id:8090/" ]
|
||||||
[ "VaultWarden" "si:vaultwarden" "https://pass.proxy.satr14.my.id" "http://main.dns.satr14.my.id:8060/" ]
|
[ "VaultWarden" "vaultwarden" "https://pass.proxy.satr14.my.id" "http://main.dns.satr14.my.id:8060/" ]
|
||||||
];
|
];
|
||||||
bookmarks = [
|
bookmarks = [
|
||||||
[ "Tailscale" "tailscale" "https://login.tailscale.com/" ]
|
[ "Tailscale" "tailscale" "https://login.tailscale.com/" ]
|
||||||
|
|
@ -72,7 +72,7 @@ in {
|
||||||
environmentFile = "/var/lib/glance/.env";
|
environmentFile = "/var/lib/glance/.env";
|
||||||
settings = {
|
settings = {
|
||||||
server = {
|
server = {
|
||||||
host = "127.0.0.1";
|
host = "0.0.0.0"; # "127.0.0.1";
|
||||||
port = 5070;
|
port = 5070;
|
||||||
};
|
};
|
||||||
|
|
||||||
|
|
@ -197,9 +197,10 @@ in {
|
||||||
style = "compact";
|
style = "compact";
|
||||||
show-failing-only = true;
|
show-failing-only = true;
|
||||||
sites = map (e: {
|
sites = map (e: {
|
||||||
enabled = true;
|
same-tab = true;
|
||||||
domain = builtins.elemAt e 0;
|
allow-insecure = true;
|
||||||
answer = builtins.elemAt e 1;
|
title = builtins.elemAt e 0;
|
||||||
|
url = builtins.elemAt e 1;
|
||||||
}) monitor;
|
}) monitor;
|
||||||
}
|
}
|
||||||
{
|
{
|
||||||
|
|
|
||||||
Loading…
Add table
Add a link
Reference in a new issue