diff options
author | makefu <github@syntax-fehler.de> | 2016-04-03 21:44:11 +0200 |
---|---|---|
committer | makefu <github@syntax-fehler.de> | 2016-04-03 21:44:11 +0200 |
commit | c8b8dac1dbcba9a8ca5da5ee2ee27af0da9d8f97 (patch) | |
tree | 5eca9a75e052fd228ca3b598e45316ccb420dc1d /makefu | |
parent | bc72bad6e22eeae9fa138be1583e742eec1e162f (diff) |
ma 2 nginx/public_html: publish home
Diffstat (limited to 'makefu')
-rw-r--r-- | makefu/2configs/nginx/public_html.nix | 15 |
1 files changed, 15 insertions, 0 deletions
diff --git a/makefu/2configs/nginx/public_html.nix b/makefu/2configs/nginx/public_html.nix new file mode 100644 index 000000000..9df8351ca --- /dev/null +++ b/makefu/2configs/nginx/public_html.nix @@ -0,0 +1,15 @@ +{ config, lib, ... }: + +with config.krebs.lib; + +{ + krebs.nginx = { + enable = true; + servers.default.locations = [ + (nameValuePair "~ ^/~(.+?)(/.*)?\$" '' + alias /home/$1/public_html$2; + autoindex on; + '') + ]; + }; +} |