diff options
author | Emile <git@emile.space> | 2025-04-11 19:39:18 +0200 |
---|---|---|
committer | Emile <git@emile.space> | 2025-04-11 19:39:18 +0200 |
commit | 0b7d76a4a5de8e7d59a514777b414aa7067b49ad (patch) | |
tree | afb4d2fd477ff089b5edcc401fa053c16329e7c3 /nix/hosts/corrino | |
parent | c23540e055fe05f9cca72361c175d29db96dffdd (diff) |
(corrino) fixed a spelling mistake
Diffstat (limited to 'nix/hosts/corrino')
-rw-r--r-- | nix/hosts/corrino/www/sb.emile.space.nix | 6 |
1 files changed, 3 insertions, 3 deletions
diff --git a/nix/hosts/corrino/www/sb.emile.space.nix b/nix/hosts/corrino/www/sb.emile.space.nix index 1854f0e..0522e25 100644 --- a/nix/hosts/corrino/www/sb.emile.space.nix +++ b/nix/hosts/corrino/www/sb.emile.space.nix @@ -1,4 +1,4 @@ -{ pkgs, ... }: +{ config, pkgs, ... }: { services.nginx.virtualHosts."sb.emile.space" = { @@ -6,7 +6,7 @@ enableACME = true; locations = { "/" = { - proxyPass = "http://${config.services.silverbullet.listenSddress}:${toString config.services.silverbullet.listenPort}"; + proxyPass = "http://${config.services.silverbullet.listenAddress}:${toString config.services.silverbullet.listenPort}"; extraConfig = '' ## Send a subrequest to Authelia to verify if the user is authenticated and has permission to access the resource. auth_request /internal/authelia/authz; @@ -73,7 +73,7 @@ proxy_connect_timeout 240; ''; }; - + }; }; # auth via authelia |