2024-10-28 00:17:05 +01:00
|
|
|
{pkgs, ...}: {
|
2024-03-31 22:06:47 +02:00
|
|
|
services.nginx = {
|
|
|
|
enable = true;
|
|
|
|
virtualHosts = {
|
|
|
|
"cinny.gladtherescake.eu" = {
|
2024-06-19 11:26:11 +02:00
|
|
|
root = "${pkgs.cinny}";
|
2024-03-31 22:06:47 +02:00
|
|
|
## Force HTTP redirect to HTTPS
|
|
|
|
forceSSL = true;
|
|
|
|
## LetsEncrypt
|
|
|
|
enableACME = true;
|
|
|
|
locations."/" = {
|
2024-06-19 11:26:11 +02:00
|
|
|
index = "index.html";
|
2024-03-31 22:06:47 +02:00
|
|
|
};
|
|
|
|
};
|
|
|
|
};
|
|
|
|
};
|
|
|
|
}
|