summaryrefslogtreecommitdiff
path: root/config/services/web/quentin/default.nix
blob: f28407158d6f20497f8ba57b04435dd996267dc3 (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.webpage}";
    forceSSL = true;
    enableACME = true;
  };
}