Skip to content

Commit

Permalink
inginx config and acme added (#77)
Browse files Browse the repository at this point in the history
  • Loading branch information
karim20230 authored Feb 19, 2024
1 parent ee91375 commit 9366f86
Showing 1 changed file with 18 additions and 0 deletions.
18 changes: 18 additions & 0 deletions hosts/prbuilder/configuration.nix
Original file line number Diff line number Diff line change
Expand Up @@ -48,4 +48,22 @@
networking = {
hostName = "prbuilder";
};

security.acme = {
acceptTerms = true;
defaults.email = "[email protected]";
};

services.nginx = {
virtualHosts = {
"himalia.vedenemo.dev" = {
enableACME = true;
forceSSL = true;
default = true;
locations."/" = {
proxyPass = "http:127.0.0.1:3015";
};
};
};
};
}

0 comments on commit 9366f86

Please sign in to comment.