Update nginx config
This commit is contained in:
parent
e07c7c9aa5
commit
471ae20bb7
1 changed files with 9 additions and 6 deletions
|
@ -1,12 +1,15 @@
|
||||||
{ ... }:
|
{ ... }:
|
||||||
|
|
||||||
{
|
{
|
||||||
services.nginx.enable = true;
|
services.nginx = {
|
||||||
services.nginx.virtualHosts."192.168.2.69" = {
|
enable = true;
|
||||||
root = "/mnt/mass/Torrents";
|
user = "media";
|
||||||
extraConfig = ''
|
virtualHosts."192.168.2.69" = {
|
||||||
autoindex on;
|
root = "/mnt/mass/Torrents";
|
||||||
'';
|
extraConfig = ''
|
||||||
|
autoindex on;
|
||||||
|
'';
|
||||||
|
};
|
||||||
};
|
};
|
||||||
|
|
||||||
networking.firewall.allowedTCPPorts = [ 80 ];
|
networking.firewall.allowedTCPPorts = [ 80 ];
|
||||||
|
|
Loading…
Reference in a new issue