stockholm/makefu/2configs/nginx/public_html.nix

16 lines
255 B
Nix
Raw Normal View History

2016-04-03 19:44:11 +00:00
{ config, lib, ... }:
2016-10-20 18:54:38 +00:00
with import <stockholm/lib>;
2016-04-03 19:44:11 +00:00
{
krebs.nginx = {
enable = true;
servers.default.locations = [
(nameValuePair "~ ^/~(.+?)(/.*)?\$" ''
alias /home/$1/public_html$2;
autoindex on;
'')
];
};
}