From 379608f49fb1be1e71343b818e3f8e9ed4c2fc74 Mon Sep 17 00:00:00 2001 From: OniriCorpe Date: Mon, 14 Mar 2022 01:05:18 +0100 Subject: [PATCH] fix web config paths --- conf/config.yaml | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/conf/config.yaml b/conf/config.yaml index fdb0907..e802a61 100644 --- a/conf/config.yaml +++ b/conf/config.yaml @@ -151,12 +151,12 @@ db-tls-ca-cert: "" # String. Directory from which gotosocial will attempt to load html templates (.tmpl files). # Examples: ["/some/absolute/path/", "./relative/path/", "../../some/weird/path/"] # Default: "./web/template/" -web-template-base-dir: "__FINALPATH__/web/template/" +web-template-base-dir: "./web/template/" # String. Directory from which gotosocial will attempt to serve static web assets (images, scripts). # Examples: ["/some/absolute/path/", "./relative/path/", "../../some/weird/path/"] # Default: "./web/assets/" -web-asset-base-dir: "__FINALPATH__/web/assets/" +web-asset-base-dir: "./web/assets/" ########################### ##### ACCOUNTS CONFIG #####