diff options
author | tv <tv@shackspace.de> | 2015-03-05 13:01:05 +0100 |
---|---|---|
committer | tv <tv@shackspace.de> | 2015-05-19 23:10:57 +0200 |
commit | f93ca99fab906b6d2b83dc3b4c9410da7c29bdde (patch) | |
tree | e34e330c04beb0822d59da3f43b0a1e32c06b582 /modules/nginx.nix |
initial commit
Diffstat (limited to 'modules/nginx.nix')
-rw-r--r-- | modules/nginx.nix | 30 |
1 files changed, 30 insertions, 0 deletions
diff --git a/modules/nginx.nix b/modules/nginx.nix new file mode 100644 index 000000000..8b420613b --- /dev/null +++ b/modules/nginx.nix @@ -0,0 +1,30 @@ +{ config, pkgs, ... }: + +{ + services.nginx = + let + name = config.networking.hostName; + qname = "${name}.retiolum"; + in + { + enable = true; + httpConfig = '' + sendfile on; + server { + listen 80; + server_name ${name} ${qname} localhost; + root /srv/http/${name}; + location ~ ^/~(.+?)(/.*)?$ { + alias /home/$1/public_html$2; + } + } + types { + text/css css; + text/html html; + image/svg+xml svg; + } + default_type text/html; + charset utf-8; + ''; + }; +} |