Movatterモバイル変換


[0]ホーム

URL:


Skip to content

Navigation Menu

Sign in
Appearance settings

Search code, repositories, users, issues, pull requests...

Provide feedback

We read every piece of feedback, and take your input very seriously.

Saved searches

Use saved searches to filter your results more quickly

Sign up
Appearance settings

How to enable debug and html trace

Alexandre Beloin edited this pageDec 14, 2020 ·1 revision

Information

To enable debug in Flaresolverr, 2 environnement variables need to be added/modified:

  • LOG_LEVEL=debug
  • LOG_HTML=true

Instruction for Docker cli

N.B.: This is an example to show the location of where to put the variable and shouldn't just be copy/pasted

docker run -d \  --name=flaresolverr \  -e LOG_LEVEL=debug \  -e LOG_HTML=true \  --restart unless-stopped \  ghcr.io/flaresolverr/flaresolverr:latest

SeeDocker's documentation for more information on passing environnement variable

Instruction for Docker compose(need to edit docker-compose.yml)

N.B.: This is an example to show the location of where to put the variable and shouldn't just be copy/pasted

---version:"2.1"services:flaresolverr:# DockerHub mirror flaresolverr/flaresolverr:latestimage:ghcr.io/flaresolverr/flaresolverr:latestcontainer_name:flaresolverrenvironment:# Used to change the verbosity of the logging      -LOG_LEVEL=debug      -LOG_HTML=true# Enables hcaptcha-solver => https://github.com/JimmyLaurent/hcaptcha-solver#- CAPTCHA_SOLVER=hcaptcha-solver# Enables CaptchaHarvester => https://github.com/NoahCardoza/CaptchaHarvester#- CAPTCHA_SOLVER=harvester#- HARVESTER_ENDPOINT=https://127.0.0.1:5000/tokenports:      -8191:8191restart:unless-stopped

SeeDocker's Compose documentation for more information on passing environnement variable

Clone this wiki locally

[8]ページ先頭

©2009-2025 Movatter.jp