-
Notifications
You must be signed in to change notification settings - Fork 0
/
config.example.toml
48 lines (37 loc) · 1.32 KB
/
config.example.toml
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
# Set logger level for diagnosing
# Available value: "NOTSET", "DEBUG", "INFO", "WARNING", "ERROR", "CRITICAL"
# Can override level in commandline argument
#log-level = "DEBUG"
# The path of manifest, must starts with /, or we will prepend a /
# http://<listen.tcp.http.adress>:<listen.tcp.http.port>/<manifest-path>
#manifest-path = "/updates.xml"
# The prefix of crx path, must starts with /, or we will prepend a /
#prefix = "/crx-repo"
# The host part of generated url in updates.xml
# generated url format:
# <base>/<prefix>/<extension-id>/<extension-version>.crx
#base = "http://localhost:8888"
# Use proxy to connect to google web store
# Simply remove this to connect directly
#proxy = ""
# Which Chrome/Chromium version sent to Google
#version = "128.0"
# how many seconds to trigger extension checking.
#interval = 10800
# Which extensions to track updating
# Write their id here
#extensions = []
# Which directory is used to storage cache
#cache-dir = "cache"
[listen.tcp]
# Listen TCP socket and transport http data
address = "127.0.0.1"
port = 8888
#[listen.tcp.tls]
#cert = "crx-repo.crt"
#key = "crx-repo.key" # Or remove this to use private key in cert
# Can be used on unix socket with key listen.unix.tls
#[listen.unix]
# Listen Unix socket and transport http data
#path = "/run/crx-repo/crx-repo.socket"
#permission = 666