feat(store): add flaresolverr app (#1494)

* feat(store): add flaresolverr app

* Update README.md

* fix(flaresolverr): expose port

* feat(flaresolverr): add icon

* fix(flaresolverr): update to 3.3.7

* fix(flaresolverr): use random unused port

* fix(flaresolverr): add supported arch
This commit is contained in:
JigSaw 2023-11-05 20:32:07 +01:00 committed by GitHub
parent ff45bc509b
commit 0ef737b82a
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23
5 changed files with 55 additions and 0 deletions

View File

@ -37,6 +37,7 @@ This is the official repository for the Tipi App Store. It contains all the apps
- [Filestash](https://github.com/mickael-kerjean/filestash) - A modern web client for SFTP, S3, FTP, WebDAV, Git, Minio, LDAP, CalDAV, CardDAV, Mysql, Backblaze
- [Firefly III](https://github.com/firefly-iii/firefly-iii) - A personal finances manager
- [Fireshare](https://github.com/ShaneIsrael/fireshare) - Self host your media and share with unique links
- [Flaresolverr](https://github.com/FlareSolverr/FlareSolverr) - FlareSolverr is a proxy server to bypass Cloudflare and DDoS-GUARD protection.
- [Flatnotes](https://github.com/Dullage/flatnotes) - A self-hosted, database-less note taking web app
- [Freshrss](https://github.com/FreshRSS/FreshRSS) - A free, self-hostable RSS aggregator
- [gandi-livedns](https://github.com/jbbodart/gandi-livedns) - Update your Gandi DNS zone records with your WAN IP

View File

@ -0,0 +1,23 @@
{
"$schema": "../schema.json",
"name": "Flaresolverr",
"port": 8666,
"available": true,
"exposable": false,
"no_gui": true,
"id": "flaresolverr",
"tipi_version": 3,
"version": "3.3.7",
"categories": [
"media",
"security",
"utilities"
],
"description": "FlareSolverr is a proxy server to bypass Cloudflare and DDoS-GUARD protection.",
"short_desc": "Bypass Cloudflare and DDoS-GuARD.",
"author": "FlareSolverr Team",
"source": "https://github.com/FlareSolverr/FlareSolverr",
"website": "https://github.com/FlareSolverr/FlareSolverr",
"form_fields": [],
"supported_architectures": ["arm64", "amd64"]
}

View File

@ -0,0 +1,13 @@
services:
flaresolverr:
container_name: flaresolverr
image: ghcr.io/flaresolverr/flaresolverr:v3.3.7
restart: unless-stopped
environment:
- LOG_LEVEL=${FLARESOLVERR_LOG_LEVEL-info}
- TZ=${TZ}
networks:
- tipi_main_network
labels:
# Main
traefik.enable: false

View File

@ -0,0 +1,18 @@
# FlareSolverr
FlareSolverr is a proxy server to bypass Cloudflare and DDoS-GUARD protection.
## How it works
FlareSolverr starts a proxy server, and it waits for user requests in an idle state using few resources.
When some request arrives, it uses [Selenium](https://www.selenium.dev) with the
[undetected-chromedriver](https://github.com/ultrafunkamsterdam/undetected-chromedriver)
to create a web browser (Chrome). It opens the URL with user parameters and waits until the Cloudflare challenge
is solved (or timeout). The HTML code and the cookies are sent back to the user, and those cookies can be used to
bypass Cloudflare using other HTTP clients.
**NOTE**: Web browsers consume a lot of memory. If you are running FlareSolverr on a machine with few RAM, do not make
many requests at once. With each request a new browser is launched.
It is also possible to use a permanent session. However, if you use sessions, you should make sure to close them as
soon as you are done using them.

Binary file not shown.

After

Width:  |  Height:  |  Size: 33 KiB