From 550723b602a0b30383c1663baabf13b0a355783a Mon Sep 17 00:00:00 2001 From: Yves ANDOLFATTO <145037627+yandolfat@users.noreply.github.com> Date: Tue, 15 Oct 2024 10:39:52 +0200 Subject: [PATCH 1/3] fix(filebrowser): support custom base_url in case of custom db path --- filebrowser/run.sh | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/filebrowser/run.sh b/filebrowser/run.sh index 22f13ed1..8a31d4db 100644 --- a/filebrowser/run.sh +++ b/filebrowser/run.sh @@ -18,7 +18,7 @@ if [ "${DB_PATH}" != "filebrowser.db" ]; then fi # set baseurl to be able to run if sudomain=false; if subdomain=true the SERVER_BASE_PATH value will be "" -filebrowser config set --baseurl "${SERVER_BASE_PATH}" > ${LOG_PATH} 2>&1 +filebrowser config set --baseurl "${SERVER_BASE_PATH}"$${DB_FLAG} > ${LOG_PATH} 2>&1 printf "📂 Serving $${ROOT_DIR} at http://localhost:${PORT} \n\n" From acab562b319fae1d67f2eef189737fbd3a311cfb Mon Sep 17 00:00:00 2001 From: Muhammad Atif Ali Date: Tue, 15 Oct 2024 19:04:05 +0500 Subject: [PATCH 2/3] bump(filebrowser): update module to version 1.0.20 --- filebrowser/README.md | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/filebrowser/README.md b/filebrowser/README.md index 8665d828..81dfeb0f 100644 --- a/filebrowser/README.md +++ b/filebrowser/README.md @@ -14,7 +14,7 @@ A file browser for your workspace. ```tf module "filebrowser" { source = "registry.coder.com/modules/filebrowser/coder" - version = "1.0.19" + version = "1.0.20" agent_id = coder_agent.example.id } ``` @@ -28,7 +28,7 @@ module "filebrowser" { ```tf module "filebrowser" { source = "registry.coder.com/modules/filebrowser/coder" - version = "1.0.19" + version = "1.0.20" agent_id = coder_agent.example.id folder = "/home/coder/project" } @@ -39,7 +39,7 @@ module "filebrowser" { ```tf module "filebrowser" { source = "registry.coder.com/modules/filebrowser/coder" - version = "1.0.19" + version = "1.0.20" agent_id = coder_agent.example.id database_path = ".config/filebrowser.db" } From dc134fc232ef4b941137e6fa57920d2476f0bedd Mon Sep 17 00:00:00 2001 From: Muhammad Atif Ali Date: Fri, 18 Oct 2024 14:18:42 +0500 Subject: [PATCH 3/3] bump(filebrowser): update filebrowser module version --- filebrowser/README.md | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/filebrowser/README.md b/filebrowser/README.md index 81dfeb0f..1b53ffaa 100644 --- a/filebrowser/README.md +++ b/filebrowser/README.md @@ -14,7 +14,7 @@ A file browser for your workspace. ```tf module "filebrowser" { source = "registry.coder.com/modules/filebrowser/coder" - version = "1.0.20" + version = "1.0.22" agent_id = coder_agent.example.id } ``` @@ -28,7 +28,7 @@ module "filebrowser" { ```tf module "filebrowser" { source = "registry.coder.com/modules/filebrowser/coder" - version = "1.0.20" + version = "1.0.22" agent_id = coder_agent.example.id folder = "/home/coder/project" } @@ -39,7 +39,7 @@ module "filebrowser" { ```tf module "filebrowser" { source = "registry.coder.com/modules/filebrowser/coder" - version = "1.0.20" + version = "1.0.22" agent_id = coder_agent.example.id database_path = ".config/filebrowser.db" }