From cc5dcd278d15bb427935c7622894fcd2695ecb73 Mon Sep 17 00:00:00 2001 From: partisan Date: Sun, 12 Jan 2025 20:58:37 +0100 Subject: [PATCH] Fixed proxy format and some typos --- Config.md | 10 +++++----- 1 file changed, 5 insertions(+), 5 deletions(-) diff --git a/Config.md b/Config.md index febb838..0db477e 100644 --- a/Config.md +++ b/Config.md @@ -42,12 +42,12 @@ This page documents all configuration variables available in `config.ini`, inclu ### Notes: -- Proxies must be specified as a **comma-separated list**. +- Proxies must be specified as a **comma-separated list**, dont use comma with space behind it. - Each proxy should be in the format: - `ADDRESS:PORT` - `ADDRESS:PORT:USER:PASSWORD` - Example: - - `proxy1.example.com:8080:user1:pass1, proxy2.example.com:8080` + - `proxy1.example.com:8080:user1:pass1,proxy2.example.com:8080` ## Crawling and Indexing @@ -55,7 +55,7 @@ This page documents all configuration variables available in `config.ini`, inclu | ------------------------------ | --------------------------------------------- | ------------------- | ----------------------------------- | | `ConcurrentStandardCrawlers` | Number of standard crawlers running at once | `12` | Positive number | | `ConcurrentChromeCrawlers` | Number of Chrome-based crawlers running | `4` | Positive number | -| `CrawlingInterval` | Time between refreshing crawled results | `24h` | Duration like`1h`, `30m`, `2h45m` | +| `CrawlingInterval` | Time between refreshing crawled results | `24h` | Duration like `1h`, `30m`, `2h45m` | | `MaxPagesPerDomain` | Maximum pages to crawl per domain | `10` | Positive number | | `IndexBatchSize` | Number of pages to index in one batch | `50` | Positive number | @@ -65,13 +65,13 @@ This page documents all configuration variables available in `config.ini`, inclu | **Variable** | **Description** | **Default Value** | **Possible Values** | | -------------- | ------------------------------ | ------------------- | ----------------------------------------- | -| `Duration` | Time to store results in RAM | `6h` | Duration like`1h`, `30m`, `2h45m` | +| `Duration` | Time to store results in RAM | `6h` | Duration like `1h`, `30m`, `2h45m` | | `MaxUsage` | Maximum RAM usage | `90%` | Percentage (`%`) or size (e.g., `2GiB`) | ### Drive Cache | **Variable** | **Description** | **Default Value** | **Possible Values** | | -------------- | ---------------------------------- | ------------------- | ------------------------------------------ | -| `Duration` | Time to store results on disk | `48h` | Duration like`1h`, `30m`, `2h45m` | +| `Duration` | Time to store results on disk | `48h` | Duration like `1h`, `30m`, `2h45m` | | `MaxUsage` | Maximum disk usage | `90%` | Percentage (`%`) or size (e.g., `10GiB`) | | `Path` | Path to the disk cache directory | `./cache` | Any valid file path |