ftp: custom 403 error page

This commit is contained in:
Lyn Fugmann 2024-02-27 14:06:06 +01:00
parent b3ee1d8e23
commit 7f70ae990c
Signed by: fugi
GPG key ID: 4472A20091BFA792

View file

@ -11,12 +11,26 @@ in
extraConfig = ''
fancyindex on;
fancyindex_exact_size off;
error_page 403 /403.html;
'';
locations."~/(klausuren|uebungen|skripte|abschlussarbeiten)".extraConfig = ''
allow 141.30.0.0/16;
allow 141.76.0.0/16;
deny all;
'';
locations."=/403.html" = {
root = pkgs.writeTextDir "403.html" ''
<html>
<head>
<title>403 Forbidden</title>
</head>
<body>
<center><h1>403 Forbidden</h1></center>
<center>Dieser Ordner ist nur aus dem Uni-Netz zug&aumlnglich.</center>
<center>This directory is only accessible from the TUD network.</center>
</body>
</html>
'';
};
};
}