File tree Expand file tree Collapse file tree 1 file changed +24
-0
lines changed
Expand file tree Collapse file tree 1 file changed +24
-0
lines changed Original file line number Diff line number Diff line change 1+ # DeWeb plugin Configuration
2+
3+ # Network node URL to connect to (default: "https://mainnet.massa.net/api/v2")
4+ network_node_url: "https://mainnet.massa.net/api/v2"
5+
6+ # API port to listen on (default: 0)
7+ api_port: 0
8+
9+ # Cache configuration
10+ cache:
11+ # Whether caching is enabled (default: true)
12+ enabled: true
13+
14+ # Maximum number of files stored in RAM cache (default: 1000)
15+ site_ram_cache_max_items: 1000
16+
17+ # Maximum number of files stored in disk cache (default: 10000)
18+ site_disk_cache_max_items: 10000
19+
20+ # Directory to store the disk cache (default: "./websitesCache/")
21+ disk_cache_dir: "./websitesCache/"
22+
23+ # Duration in seconds for file list cache (default: 60s)
24+ file_list_cache_duration_seconds: 60
You can’t perform that action at this time.
0 commit comments