8000 feat(filebrowser): support subdomain = false by Seppdo · Pull Request #286 · coder/modules · GitHub
[go: up one dir, main page]

Skip to content
This repository was archived by the owner on May 15, 2025. It is now read-only.

feat(filebrowser): support subdomain = false #286

Merged
merged 21 commits into from
Sep 19, 2024
Merged
Changes from 1 commit
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
Prev Previous commit
Next Next commit
update sudomain=false example
  • Loading branch information
Seppdo authored Aug 30, 2024
commit edb7182f1d0ebe3f204ee3091dc6a3faebd621ed
10 changes: 4 additions & 6 deletions filebrowser/README.md
Original file line number Diff line number Diff line change
Expand Up @@ -47,13 +47,11 @@ module "filebrowser" {

### Serve from the same domain (no subdomain)

Make sure to set both workspace_name and owner_name.

```tf
module "filebrowser" {
source = "registry.coder.com/modules/filebrowser/coder"
agent_id = coder_agent.main.id
workspace_name = data.coder_workspace.me.name
owner_name = data.coder_workspace_owner.me.name
source = "registry.coder.com/modules/filebrowser/coder"
agent_id = coder_agent.main.id
subdomain = false
agent_name = "main"
}
```
0