Authentification Grafana par HAproxy
This commit is contained in:
parent
f944ef80d7
commit
b20b23ac60
@ -35,7 +35,7 @@ in
|
|||||||
services.haproxy-acme.enable = true;
|
services.haproxy-acme.enable = true;
|
||||||
services.haproxy-acme.domaine = domaine;
|
services.haproxy-acme.domaine = domaine;
|
||||||
services.haproxy-acme.services = {
|
services.haproxy-acme.services = {
|
||||||
"grafana.${domaine}" = { ip = "127.0.0.1"; port = 3000; auth = false; };
|
"grafana.${domaine}" = { ip = "127.0.0.1"; port = 3000; auth = true; };
|
||||||
"emby.${domaine}" = { ip = "127.0.0.1"; port = 8096; auth = false; };
|
"emby.${domaine}" = { ip = "127.0.0.1"; port = 8096; auth = false; };
|
||||||
"radarr.${domaine}" = { ip = "127.0.0.1"; port = 7878; auth = true; extraAcls = "acl API url_beg /api\n"; aclBool = "!AUTH_OK !API"; };
|
"radarr.${domaine}" = { ip = "127.0.0.1"; port = 7878; auth = true; extraAcls = "acl API url_beg /api\n"; aclBool = "!AUTH_OK !API"; };
|
||||||
"sonarr.${domaine}" = { ip = "127.0.0.1"; port = 8989; auth = true; extraAcls = "acl API url_beg /api\n"; aclBool = "!AUTH_OK !API"; };
|
"sonarr.${domaine}" = { ip = "127.0.0.1"; port = 8989; auth = true; extraAcls = "acl API url_beg /api\n"; aclBool = "!AUTH_OK !API"; };
|
||||||
@ -93,6 +93,11 @@ in
|
|||||||
SMTP_ENABLED = "true";
|
SMTP_ENABLED = "true";
|
||||||
SMTP_FROM_ADDRESS = "grafana@${domaine}";
|
SMTP_FROM_ADDRESS = "grafana@${domaine}";
|
||||||
SMTP_SKIP_VERIFY = "true";
|
SMTP_SKIP_VERIFY = "true";
|
||||||
|
AUTH_DISABLE_LOGIN_FORM = "true";
|
||||||
|
AUTH_DISABLE_SIGNOUT_MENU = "true";
|
||||||
|
AUTH_ANONYMOUS_ENABLED = "true";
|
||||||
|
AUTH_ANONYMOUS_ORG_ROLE = "Admin";
|
||||||
|
AUTH_BASIC_ENABLED = "false";
|
||||||
};
|
};
|
||||||
|
|
||||||
services.emby.enable = true;
|
services.emby.enable = true;
|
||||||
|
Loading…
Reference in New Issue
Block a user