From 0b7d76a4a5de8e7d59a514777b414aa7067b49ad Mon Sep 17 00:00:00 2001 From: Emile Date: Fri, 11 Apr 2025 19:39:18 +0200 Subject: (corrino) fixed a spelling mistake --- nix/hosts/corrino/www/sb.emile.space.nix | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) (limited to 'nix/hosts/corrino') 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 -- cgit 1.4.1