Skip to content

Commit

Permalink
整理
Browse files Browse the repository at this point in the history
  • Loading branch information
voluntas committed Aug 22, 2023
1 parent 28bc747 commit c0515e0
Showing 1 changed file with 24 additions and 8 deletions.
32 changes: 24 additions & 8 deletions config_example.ini
Original file line number Diff line number Diff line change
@@ -1,9 +1,6 @@
debug = false

log_dir = .
log_name = kohaku.jsonl
log_stdout = false
debug = true

# Kohaku の HTTP リクエストの待ち受けアドレスとポートです
https = true
listen_addr = 0.0.0.0
listen_port = 5890
Expand All @@ -12,13 +9,32 @@ exporter_https = false
exporter_listen_addr = 0.0.0.0
exporter_listen_port = 5891

postgres_uri = postgres://postgres:[email protected]:5432/kohaku
# postgres_ca_cert_file = cert/postgres/ca.pem

# kohaku のサーバ証明書ファイルです
tls_fullchain_file = cert/server/server.pem
# kohaku の秘密鍵ファイルです
tls_privkey_file = cert/server/server.key
# クライアント認証用の CA 証明書ファイルです
# tls_verify_cacert_path = cert/server/ca.pem

# [log]
# ログの出力先ディレクトリです
log_dir = .
# ログの出力先ファイルのファイル名です
log_name = kohaku.jsonl
# ログの標準出力への出力可否の指定です
# true にした場合はファイルにログは出力されません
log_stdout = true

# ローテーションするログの最大サイズ(MB)です
#log_rotate_max_size = 200
# 保持するログファイルの最大数です
#log_rotate_max_backups = 7
# 古いログファイルを保持する最大日数です
#log_rotate_max_age = 30

postgres_uri = postgres://postgres:[email protected]:5432/kohaku
# postgres_ca_cert_file = cert/postgres/ca.pem

http2_max_concurrent_streams = 250
http2_max_read_frame_size = 1048576
http2_idle_timeout = 60

0 comments on commit c0515e0

Please sign in to comment.