summaryrefslogtreecommitdiffstats
path: root/makefu/2configs/nginx/update.connector.one.nix
blob: 44345dcd8cc220e83fb6eebe01deaae189d269d2 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
{ config, lib, pkgs, ... }:

with import <stockholm/lib>;
{
  services.nginx = {
    enable = mkDefault true;
    virtualHosts."update.connector.one" = {
      locations = {
        "/" = {
          root =  "/var/www/update.connector.one";
          extraConfig = ''
            autoindex on;
            sendfile on;
            gzip on;
          '';
        };
      };
    };
  };
}