forked from pub-solar/infra
34 lines
616 B
Nix
34 lines
616 B
Nix
|
{ ... }:
|
||
|
|
||
|
{
|
||
|
systemd.tmpfiles.rules = [
|
||
|
"d '/srv/www/miom.space' 0750 hakkonaut hakkonaut - -"
|
||
|
];
|
||
|
|
||
|
services.nginx.virtualHosts = {
|
||
|
"www.miom.space" = {
|
||
|
enableACME = true;
|
||
|
addSSL = true;
|
||
|
locations."/" = {
|
||
|
extraConfig = ''
|
||
|
return 301 https://miom.space$request_uri;
|
||
|
'';
|
||
|
};
|
||
|
};
|
||
|
|
||
|
"miom.space" = {
|
||
|
default = true;
|
||
|
enableACME = true;
|
||
|
forceSSL = true;
|
||
|
|
||
|
locations = {
|
||
|
"/" = {
|
||
|
root = "/srv/www/miom.space";
|
||
|
index = "index.html";
|
||
|
tryFiles = "$uri $uri/ =404";
|
||
|
};
|
||
|
};
|
||
|
};
|
||
|
};
|
||
|
}
|