From 1439f980dff2798151c4b59cf339241a81de8a2e Mon Sep 17 00:00:00 2001 From: devydave Date: Sat, 14 Feb 2026 11:36:30 +0100 Subject: [PATCH 1/3] chore: bump version to 1.0.37 --- compose.yml | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/compose.yml b/compose.yml index 2f3320d..8909ae2 100644 --- a/compose.yml +++ b/compose.yml @@ -3,7 +3,7 @@ version: "3.11" services: app: - image: luuul/4get:1.0.34 + image: luuul/4get:1.0.37 environment: - FOURGET_PROTO=http - DISALLOWED_SSL=TLS_AES_256_GCM_SHA384 -- 2.49.0 From 9b9fe87cfc97752eabe2d8e90dd658a2519094d1 Mon Sep 17 00:00:00 2001 From: devydave Date: Sat, 14 Feb 2026 11:45:31 +0100 Subject: [PATCH 2/3] feat: tinyauth support --- .env.sample | 6 +++++- compose.tiny.yml | 8 ++++++++ 2 files changed, 13 insertions(+), 1 deletion(-) create mode 100644 compose.tiny.yml diff --git a/.env.sample b/.env.sample index 18b3fef..3f6912b 100644 --- a/.env.sample +++ b/.env.sample @@ -21,8 +21,12 @@ DEFAULT_THEME="Dark" # Options: "Catppuccin Latte" "Dark Christmas" "Wine" "Catp ## Enable onion routing, this will make all searches using tor #COMPOSE_FILE="$COMPOSE_FILE:compose.tor.yml" +## Enable tinyauth forward auth +#COMPOSE_FILE="$COMPOSE_FILE:compose.tiny.yml" +#TINY_MIDDLEWARE="your_domain_com" + INCLUDE_NEWS_LINK=false INCLUDE_4GET_DONATION_LINK=true INCLUDE_SOURCE_LINK=false API_ENABLED=false -#MOTD="A proxy search engine that doesn't suck" \ No newline at end of file +#MOTD="A proxy search engine that doesn't suck" diff --git a/compose.tiny.yml b/compose.tiny.yml new file mode 100644 index 0000000..394387a --- /dev/null +++ b/compose.tiny.yml @@ -0,0 +1,8 @@ +--- +version: "3.11" + +services: + app: + deploy: + labels: + - "traefik.http.routers.${STACK_NAME}.middlewares=${TINY_MIDDLEWARE}" -- 2.49.0 From f1b0fb682809719e2f01ff1271a33676fb667f70 Mon Sep 17 00:00:00 2001 From: devydave Date: Sat, 14 Feb 2026 12:01:20 +0100 Subject: [PATCH 3/3] fix: adds default compose file to prevent error when using sub composes --- .env.sample | 1 + 1 file changed, 1 insertion(+) diff --git a/.env.sample b/.env.sample index 3f6912b..6f0190f 100644 --- a/.env.sample +++ b/.env.sample @@ -1,4 +1,5 @@ TYPE=4get +COMPOSE_FILE="compose.yml" DOMAIN=4get.example.com -- 2.49.0