From 78a926be38f7b56936490dded1ee1dab57275f42 Mon Sep 17 00:00:00 2001 From: Louis Pearson Date: Sat, 6 Jan 2024 17:17:57 -0700 Subject: [PATCH] fix: remove slash from caddy nextcloud config --- configuration.nix | 7 +------ 1 file changed, 1 insertion(+), 6 deletions(-) diff --git a/configuration.nix b/configuration.nix index 7b05e45..57ef673 100644 --- a/configuration.nix +++ b/configuration.nix @@ -19,11 +19,6 @@ boot.supportedFilesystems = [ "zfs" ]; boot.zfs.forceImportRoot = false; - # fileSystems."/zroot" = - # { device = "dev/disk/by-uuid/"; - # fsType = "ext4"; - # }; - networking.hostName = "samsehu"; # Define your hostname. # Pick only one of the below networking options. @@ -236,7 +231,7 @@ ''; virtualHosts."nextcloud.samsehu.perli.casa".extraConfig = '' - reverse_proxy unix//${config.services.phpfpm.pools.nextcloud.socket}|fcgi://localhost/ + reverse_proxy unix/${config.services.phpfpm.pools.nextcloud.socket}|fcgi://localhost/ ''; };