docs: listen on localhost only
This commit is contained in:
parent
5547896f51
commit
745618bd76
1 changed files with 8 additions and 4 deletions
|
@ -1,8 +1,6 @@
|
||||||
{ pkgs, ... }:
|
{ pkgs, ... }:
|
||||||
|
|
||||||
{
|
{
|
||||||
environment.systemPackages = [ pkgs.website-docs-nifoc-pw ];
|
|
||||||
|
|
||||||
services.nginx = {
|
services.nginx = {
|
||||||
enable = true;
|
enable = true;
|
||||||
|
|
||||||
|
@ -11,7 +9,15 @@
|
||||||
(domain: {
|
(domain: {
|
||||||
name = domain;
|
name = domain;
|
||||||
value = {
|
value = {
|
||||||
|
listen = [
|
||||||
|
{
|
||||||
|
addr = "127.0.0.1";
|
||||||
|
port = 80;
|
||||||
|
}
|
||||||
|
];
|
||||||
|
|
||||||
root = "${pkgs.website-docs-nifoc-pw}/site/${domain}";
|
root = "${pkgs.website-docs-nifoc-pw}/site/${domain}";
|
||||||
|
|
||||||
extraConfig = ''
|
extraConfig = ''
|
||||||
autoindex on;
|
autoindex on;
|
||||||
autoindex_format html;
|
autoindex_format html;
|
||||||
|
@ -19,6 +25,4 @@
|
||||||
};
|
};
|
||||||
}) [ "katja.nifoc.pw" "katja_vmstats.nifoc.pw" "noesis.nifoc.pw" "propagator.nifoc.pw" ]);
|
}) [ "katja.nifoc.pw" "katja_vmstats.nifoc.pw" "noesis.nifoc.pw" "propagator.nifoc.pw" ]);
|
||||||
};
|
};
|
||||||
|
|
||||||
networking.firewall.allowedTCPPorts = [ 80 ];
|
|
||||||
}
|
}
|
||||||
|
|
Loading…
Reference in a new issue