Skip to content

Commit a3ba616

Browse files
netsgnutmatifali
andauthored
fix(filebrowser): use updated flag for baseURL (#626)
Co-authored-by: Atif Ali <atif@coder.com>
1 parent 24dc52f commit a3ba616

2 files changed

Lines changed: 5 additions & 5 deletions

File tree

registry/coder/modules/filebrowser/README.md

Lines changed: 4 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -14,7 +14,7 @@ A file browser for your workspace.
1414
module "filebrowser" {
1515
count = data.coder_workspace.me.start_count
1616
source = "registry.coder.com/coder/filebrowser/coder"
17-
version = "1.1.3"
17+
version = "1.1.4"
1818
agent_id = coder_agent.main.id
1919
}
2020
```
@@ -29,7 +29,7 @@ module "filebrowser" {
2929
module "filebrowser" {
3030
count = data.coder_workspace.me.start_count
3131
source = "registry.coder.com/coder/filebrowser/coder"
32-
version = "1.1.3"
32+
version = "1.1.4"
3333
agent_id = coder_agent.main.id
3434
folder = "/home/coder/project"
3535
}
@@ -41,7 +41,7 @@ module "filebrowser" {
4141
module "filebrowser" {
4242
count = data.coder_workspace.me.start_count
4343
source = "registry.coder.com/coder/filebrowser/coder"
44-
version = "1.1.3"
44+
version = "1.1.4"
4545
agent_id = coder_agent.main.id
4646
database_path = ".config/filebrowser.db"
4747
}
@@ -53,7 +53,7 @@ module "filebrowser" {
5353
module "filebrowser" {
5454
count = data.coder_workspace.me.start_count
5555
source = "registry.coder.com/coder/filebrowser/coder"
56-
version = "1.1.3"
56+
version = "1.1.4"
5757
agent_id = coder_agent.main.id
5858
agent_name = "main"
5959
subdomain = false

registry/coder/modules/filebrowser/run.sh

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -28,7 +28,7 @@ if [[ ! -f "${DB_PATH}" ]]; then
2828
filebrowser users add admin "coderPASSWORD" --perm.admin=true --viewMode=mosaic 2>&1 | tee -a ${LOG_PATH}
2929
fi
3030

31-
filebrowser config set --baseurl=${SERVER_BASE_PATH} --port=${PORT} --auth.method=noauth --root=$ROOT_DIR 2>&1 | tee -a ${LOG_PATH}
31+
filebrowser config set --baseURL=${SERVER_BASE_PATH} --port=${PORT} --auth.method=noauth --root=$ROOT_DIR 2>&1 | tee -a ${LOG_PATH}
3232

3333
printf "👷 Starting filebrowser in background... \n\n"
3434

0 commit comments

Comments
 (0)