teutat3s
c49ffb2d5b
All checks were successful
Flake checks / Check (pull_request) Successful in 4m53s
nginx: [emerg] a duplicate default server for 0.0.0.0:80 in /etc/nginx/nginx.conf:665
44 lines
781 B
Nix
44 lines
781 B
Nix
{ ... }:
|
|
|
|
{
|
|
systemd.tmpfiles.rules = [
|
|
"d '/srv/www/miom.space' 0750 hakkonaut hakkonaut - -"
|
|
];
|
|
|
|
services.nginx.virtualHosts = {
|
|
"www.miom.space" = {
|
|
enableACME = true;
|
|
addSSL = true;
|
|
|
|
extraConfig = ''
|
|
error_log /dev/null;
|
|
access_log /dev/null;
|
|
'';
|
|
|
|
locations."/" = {
|
|
extraConfig = ''
|
|
return 301 https://miom.space$request_uri;
|
|
'';
|
|
};
|
|
};
|
|
|
|
"miom.space" = {
|
|
enableACME = true;
|
|
forceSSL = true;
|
|
|
|
extraConfig = ''
|
|
error_log /dev/null;
|
|
access_log /dev/null;
|
|
'';
|
|
|
|
locations = {
|
|
"/" = {
|
|
root = "/srv/www/miom.space";
|
|
index = "index.html";
|
|
tryFiles = "$uri $uri/ =404";
|
|
};
|
|
};
|
|
};
|
|
};
|
|
}
|