fruitbasket/modules/ftp.nix

24 lines
540 B
Nix
Raw Permalink Normal View History

2023-03-24 17:05:30 +01:00
{ config, pkgs, ... }:
let
domain = "ftp.${config.networking.domain}";
2023-03-24 17:05:30 +01:00
in
{
2023-08-22 14:35:26 +02:00
services.nginx.additionalModules = [ pkgs.nginxModules.fancyindex ];
2023-03-24 17:05:30 +01:00
services.nginx.virtualHosts."${domain}" = {
enableACME = true;
forceSSL = true;
root = "/srv/ftp";
extraConfig = ''
2023-08-22 14:32:23 +02:00
fancyindex on;
fancyindex_exact_size off;
2023-03-24 17:05:30 +01:00
'';
locations."~/(klausuren|uebungen|skripte|abschlussarbeiten)".extraConfig = ''
2023-03-24 17:06:40 +01:00
allow 141.30.0.0/16;
allow 141.76.0.0/16;
allow 172.16.0.0/16;
deny all;
2023-03-24 17:05:30 +01:00
'';
};
}