From 964855f30bcb36869f24cb8474b9a0c44f58a736 Mon Sep 17 00:00:00 2001 From: tv Date: Mon, 22 Jun 2015 18:20:25 +0200 Subject: tv: modularize nginx --- modules/tv/nginx.nix | 30 ------------------------------ 1 file changed, 30 deletions(-) delete mode 100644 modules/tv/nginx.nix (limited to 'modules/tv/nginx.nix') diff --git a/modules/tv/nginx.nix b/modules/tv/nginx.nix deleted file mode 100644 index 8b420613..00000000 --- a/modules/tv/nginx.nix +++ /dev/null @@ -1,30 +0,0 @@ -{ 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; - ''; - }; -} -- cgit v1.2.3