diff options
Diffstat (limited to 'content/blog/01-hello-world/index.md')
-rw-r--r-- | content/blog/01-hello-world/index.md | 12 |
1 files changed, 3 insertions, 9 deletions
diff --git a/content/blog/01-hello-world/index.md b/content/blog/01-hello-world/index.md index e0aaefe..0bdb3d0 100644 --- a/content/blog/01-hello-world/index.md +++ b/content/blog/01-hello-world/index.md @@ -171,19 +171,13 @@ inputs.website = { and use the `nginx.virtualHosts` option to deploy it: ``` nix -nginx.virtualHosts = { +services.nginx.virtualHosts = { "adbjesus.com" = { default = true; forceSSL = true; enableACME = true; - locations = { - "/" = { - root = "${inputs.website.packages.${system}.website}/public"; - extraConfig = '' - add_header Last-Modified "${toDateTime inputs.website.lastModified}"; - add_header Cache-Control max-age="${toString (60 * 60 * 24)}"; - ''; - }; + locations."/" = { + root = "${website.packages.x86_64-linux.website}/public"; }; }; }; |