moved stuff to common.nix
This commit is contained in:
parent
8e2815884a
commit
a6ea75a6d2
4 changed files with 10 additions and 17 deletions
|
@ -13,12 +13,6 @@
|
||||||
auth_basic off;
|
auth_basic off;
|
||||||
'';
|
'';
|
||||||
};
|
};
|
||||||
"/nginx_status" = {
|
|
||||||
extraConfig = ''
|
|
||||||
stub_status;
|
|
||||||
auth_basic off;
|
|
||||||
'';
|
|
||||||
};
|
|
||||||
};
|
};
|
||||||
};
|
};
|
||||||
appendHttpConfig = ''
|
appendHttpConfig = ''
|
||||||
|
|
|
@ -30,12 +30,6 @@ in {
|
||||||
auth_basic off;
|
auth_basic off;
|
||||||
'';
|
'';
|
||||||
};
|
};
|
||||||
"/nginx_status" = {
|
|
||||||
extraConfig = ''
|
|
||||||
stub_status;
|
|
||||||
auth_basic off;
|
|
||||||
'';
|
|
||||||
};
|
|
||||||
};
|
};
|
||||||
};
|
};
|
||||||
appendHttpConfig = ''
|
appendHttpConfig = ''
|
||||||
|
|
|
@ -33,11 +33,6 @@
|
||||||
'';
|
'';
|
||||||
|
|
||||||
};
|
};
|
||||||
"/nginx_status" = {
|
|
||||||
extraConfig = ''
|
|
||||||
stub_status;
|
|
||||||
auth_basic off;
|
|
||||||
'';
|
|
||||||
};
|
};
|
||||||
};
|
};
|
||||||
};
|
};
|
||||||
|
|
|
@ -8,6 +8,10 @@
|
||||||
|
|
||||||
services.netdata = {
|
services.netdata = {
|
||||||
enable = true;
|
enable = true;
|
||||||
|
configText = ''
|
||||||
|
[global]
|
||||||
|
dbengine multihost disk space = 2307
|
||||||
|
'';
|
||||||
};
|
};
|
||||||
|
|
||||||
# Enable nginx service
|
# Enable nginx service
|
||||||
|
@ -45,6 +49,12 @@
|
||||||
gzip_types *;
|
gzip_types *;
|
||||||
'';
|
'';
|
||||||
};
|
};
|
||||||
|
"/nginx_status" = {
|
||||||
|
extraConfig = ''
|
||||||
|
stub_status;
|
||||||
|
auth_basic off;
|
||||||
|
'';
|
||||||
|
};
|
||||||
};
|
};
|
||||||
};
|
};
|
||||||
};
|
};
|
||||||
|
|
Loading…
Reference in a new issue