Files
any-hub/configs/npm.sample.toml
2025-11-14 23:54:50 +08:00

23 lines
536 B
TOML
Raw Blame History

This file contains ambiguous Unicode characters
This file contains Unicode characters that might be confused with other characters. If you think that this is intentional, you can safely ignore this warning. Use the Escape button to reveal them.
# NPM Registry 代理示例配置
# 使用前请在 /etc/hosts 中为 npm.hub.local 配置 127.0.0.1
# 并根据需要调整 StoragePath/ListenPort 等字段。
ListenPort = 5000
LogLevel = "info"
LogFilePath = "./logs/npm-proxy.log"
StoragePath = "./storage/npm"
CacheTTL = 86400
UpstreamTimeout = "30s"
[[Hub]]
Name = "npm"
Domain = "npm.hub.local"
Upstream = "https://registry.npmjs.org"
Proxy = ""
Type = "npm" # docker|npm|go
Module = "legacy"
Username = ""
Password = ""
CacheTTL = 43200
EnableHeadCheck = false