🏡 index : github.com/captn3m0/nebula.git

author Nemo <commits@captnemo.in> 2021-10-16 11:41:30.0 +05:30:00
committer Nemo <commits@captnemo.in> 2021-10-16 11:41:30.0 +05:30:00
commit
f6b1954e8f382c6ddb1792ee805f7ac5fd4b73c2 [patch]
tree
8d838cf8b6e8b75676e378a2d1c0dd0338cacc7c
parent
137eb3469f699eee2633801f123add1b0a7a7971
download
f6b1954e8f382c6ddb1792ee805f7ac5fd4b73c2.tar.gz

no more firefox sync, Mozilla makes this too hard



Diff

 firefox-sync.tf | 36 ------------------------------------
 1 file changed, 36 deletions(-)

diff --git a/firefox-sync.tf b/firefox-sync.tf
deleted file mode 100644
index f79b6a9..0000000 100644
--- a/firefox-sync.tf
+++ /dev/null
@@ -1,36 +1,0 @@
module "firefox-sync" {

  name   = "firefox-sync"
  source = "./modules/container"
  image  = "mozilla/syncserver:latest"

  // Default is port 80
  web = {

    expose = true
    port   = "5000"
    host   = "firesync.${var.root-domain}"
  }

  resource = {

    memory      = "400"
    memory_swap = "400"
  }

  volumes = [

    {
      host_path      = "/mnt/xwing/data/firefox-sync"
      container_path = "/data"
    },
  ]

  env = [

    "SYNCSERVER_PUBLIC_URL=https://firesync.${var.root-domain}",
    "SYNCSERVER_SECRET=${data.pass_password.syncserver_secret.password}",
    "SYNCSERVER_SQLURI=sqlite:////data/sync.db",
    "SYNCSERVER_BATCH_UPLOAD_ENABLED=true",
    "SYNCSERVER_FORCE_WSGI_ENVIRON=true",
    "PORT=5000",
  ]

  networks = ["bridge"]
}