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