@@ -49,20 +49,20 @@ module "copyparty" {
4949
5050``` tf
5151module "copyparty" {
52- count = data.coder_workspace.me.start_count
53- source = "registry.coder.com/djarbz/copyparty/coder"
54- version = "0.1.0"
55- agent_id = coder_agent.example.id
52+ count = data.coder_workspace.me.start_count
53+ source = "registry.coder.com/djarbz/copyparty/coder"
54+ version = "0.1.0"
55+ agent_id = coder_agent.example.id
5656 subdomain = true
5757 arguments = [
58- "-v", "/tmp:/tmp:r", # Share tmp directory (read-only)
59- "-v", "/home/coder/:/home:rw", # Share home directory (read-write)
60- "-v", "${local.root_dir}:/work:A:c,dotsrch", # Share work directory (All Perms)
61- "-e2dsa", # Enables general file indexing"
62- "--re-maxage", "900", # Rescan filesystem for changes every SEC
63- "--see-dots", # Show dotfiles by default if user has correct permissions on volume
64- "--xff-src=lan", # List of trusted reverse-proxy CIDRs (comma-separated) or `lan` for private IPs.
65- "--rproxy", "1", # Which ip to associate clients with, index of X-FWD IP.
58+ "-v", "/tmp:/tmp:r", # Share tmp directory (read-only)
59+ "-v", "/home/coder/:/home:rw", # Share home directory (read-write)
60+ "-v", "${local.root_dir}:/work:A:c,dotsrch", # Share work directory (All Perms)
61+ "-e2dsa", # Enables general file indexing"
62+ "--re-maxage", "900", # Rescan filesystem for changes every SEC
63+ "--see-dots", # Show dotfiles by default if user has correct permissions on volume
64+ "--xff-src=lan", # List of trusted reverse-proxy CIDRs (comma-separated) or `lan` for private IPs.
65+ "--rproxy", "1", # Which ip to associate clients with, index of X-FWD IP.
6666 ]
6767}
6868```
0 commit comments