fruitbasket/modules/ftp.nix

22 lines
420 B
Nix
Raw Normal View History

2023-03-24 17:05:30 +01:00
{ config, pkgs, ... }:
let
domain = "ftp.rfive.de";
in
{
services.nginx.virtualHosts."${domain}" = {
enableACME = true;
forceSSL = true;
root = "/srv/ftp";
extraConfig = ''
autoindex on;
'';
locations."~/(klausuren|uebungen|skripte|abschlussarbeiten)".extraConfig = ''
allow 141.30.0.0/16;
allow 141.76.0.0/16;
allow 172.16.0.0/16;
deny all;
'';
};
}