Compare commits

..

No commits in common. "5f173b8a2da6e12c4411218aabd1e8aceac668c8" and "2ac066054923516cceff1676e70fdeb7cfb6960f" have entirely different histories.

2 changed files with 11 additions and 30 deletions

View File

@ -3,7 +3,6 @@
fqdn, fqdn,
inputs, inputs,
pkgs, pkgs,
lib,
... ...
}: }:
let let
@ -138,17 +137,6 @@ in
}; };
}; };
# TODO: Upstream the below to Nixpkgs. If the runner is using the exact same url as the gitea
# service and both are on the same host, then the runner should have a systemd dependency on the
# gitea service.
systemd.services.gitea-actions-default.requires = lib.mkIf (
config.services.gitea.enable
&& (
config.services.gitea-actions-runner.instances.default.url
== config.services.gitea.settings.server.ROOT_URL
)
) [ "gitea.service" ];
networking.firewall.allowedTCPPorts = [ config.services.gitea.settings.server.SSH_PORT ]; networking.firewall.allowedTCPPorts = [ config.services.gitea.settings.server.SSH_PORT ];
environment.persistence.save.directories = [ environment.persistence.save.directories = [

View File

@ -18,23 +18,16 @@
defaults.email = "price@orion-technologies.io"; defaults.email = "price@orion-technologies.io";
}; };
services.nginx.virtualHosts = { services.nginx.virtualHosts."blog.${fqdn}" = {
"blog.${fqdn}" = { forceSSL = true;
forceSSL = true; enableACME = true;
enableACME = true; root = inputs.blog.packages.${pkgs.system}.default;
globalRedirect = "price-hiller.com"; locations."/".extraConfig = ''
}; if ($request_uri ~ ^/(.*)\.html(\?|$)) {
"price-hiller.com" = { return 302 /$1;
forceSSL = true; }
enableACME = true; try_files $uri $uri.html $uri/ =404;
root = inputs.blog.packages.${pkgs.system}.default; '';
locations."/".extraConfig = '' locations."/".index = "home.html";
if ($request_uri ~ ^/(.*)\.html(\?|$)) {
return 302 /$1;
}
try_files $uri $uri.html $uri/ =404;
'';
locations."/".index = "home.html";
};
}; };
} }