My personal project and infrastructure archive
You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
 
 
 
 
 
 
nomicon/infra/libkookie/configuration/server/blog/default.nix

22 lines
464 B

{ config, pkgs, ... }:
{
services.nginx.virtualHosts."spacekookie.de" = {
serverAliases = [ "www.spacekookie.de" ];
enableACME = false;
useACMEHost = "spacekookie.de";
forceSSL = true;
locations."/" = {
root = pkgs.spacekookie-de;
index = "index.html";
};
locations."/downloads/" = {
# root = kookiepkgs.spacekookie-de;
root = "/var/lib";
extraConfig = ''
autoindex on;
'';
};
};
}