summaryrefslogtreecommitdiff
path: root/config/services/web/quentin/default.nix
blob: 8456565f5ad6db06df6cb5ba852e1297eace24b2 (plain)
1
2
3
4
5
6
7
8
9
10
{ config, pkgs, ... }:

{
  services.nginx.virtualHosts.quentin = {
    serverName = "quentin.${config.networking.domain}";
    locations."/".root = "${pkgs.personal.academic-webpage}";
    forceSSL = true;
    enableACME = true;
  };
}