mirror of
https://gitlab.com/ahoneybun/nix-configs.git
synced 2025-05-12 03:04:03 -06:00
17 lines
271 B
Nix
17 lines
271 B
Nix
{ config, pkgs, ... }:
|
|
|
|
{
|
|
services.nginx = {
|
|
enable = true;
|
|
virtualHosts = {
|
|
"ahoneybun.net" = {
|
|
forceSSL = true;
|
|
enableACME = true;
|
|
locations."/" = {
|
|
root = "/var/www/ahoneybun-net/_site";
|
|
};
|
|
};
|
|
};
|
|
};
|
|
|
|
}
|