45 lines
1.1 KiB
Nix
45 lines
1.1 KiB
Nix
{
|
|
pkgs,
|
|
inputs,
|
|
...
|
|
}: let
|
|
PUBLIC_BASE_URL = "https://gaze.systems";
|
|
pkg = inputs.blog.packages.${pkgs.system}.default.overrideAttrs (old: {
|
|
inherit PUBLIC_BASE_URL;
|
|
GUESTBOOK_BASE_URL = "http://localhost:5173";
|
|
});
|
|
port = 3000;
|
|
in {
|
|
users.users.website = {
|
|
isSystemUser = true;
|
|
group = "website";
|
|
};
|
|
users.groups.website = {};
|
|
|
|
systemd.services.website = {
|
|
description = "website";
|
|
wantedBy = ["multi-user.target"];
|
|
after = ["network.target" "guestbook.service"];
|
|
serviceConfig = {
|
|
User = "website";
|
|
ExecStart = "${pkg}/bin/website";
|
|
Restart = "on-failure";
|
|
RestartSec = 5;
|
|
WorkingDirectory = "/var/lib/website";
|
|
Environment = "HOME=/var/lib/website";
|
|
EnvironmentFile = pkgs.writeText "website-env" ''
|
|
ORIGIN="${PUBLIC_BASE_URL}"
|
|
PORT=${toString port}
|
|
'';
|
|
};
|
|
};
|
|
|
|
services.nginx.virtualHosts."gaze.systems" = {
|
|
useACMEHost = "gaze.systems";
|
|
forceSSL = true;
|
|
locations."/" = {
|
|
proxyPass = "http://localhost:${toString port}";
|
|
};
|
|
};
|
|
}
|