mirror of
https://github.com/router-for-me/CLIProxyAPI.git
synced 2026-02-03 04:50:52 +08:00
- Implemented CRUD operations for authentication files. - Added endpoints for managing API keys, quotas, proxy settings, and other configurations. - Enhanced management access with robust validation, remote access control, and persistence support. - Updated README with new configuration details. Fixed OpenAI Chat Completions for codex
60 lines
2.1 KiB
YAML
60 lines
2.1 KiB
YAML
# Server port
|
|
port: 8317
|
|
|
|
# Management API settings
|
|
remote-management:
|
|
# Whether to allow remote (non-localhost) management access.
|
|
# When false, only localhost can access management endpoints (a key is still required).
|
|
allow-remote: false
|
|
|
|
# Management key. If a plaintext value is provided here, it will be hashed on startup.
|
|
# All management requests (even from localhost) require this key.
|
|
# Leave empty to disable the Management API entirely (404 for all /v0/management routes).
|
|
secret-key: ""
|
|
|
|
# Authentication directory (supports ~ for home directory)
|
|
auth-dir: "~/.cli-proxy-api"
|
|
|
|
# Enable debug logging
|
|
debug: false
|
|
|
|
# Proxy URL. Supports socks5/http/https protocols. Example: socks5://user:pass@192.168.1.1:1080/
|
|
proxy-url: ""
|
|
|
|
# Number of times to retry a request. Retries will occur if the HTTP response code is 403, 408, 500, 502, 503, or 504.
|
|
request-retry: 3
|
|
|
|
# Quota exceeded behavior
|
|
quota-exceeded:
|
|
switch-project: true # Whether to automatically switch to another project when a quota is exceeded
|
|
switch-preview-model: true # Whether to automatically switch to a preview model when a quota is exceeded
|
|
|
|
# API keys for authentication
|
|
api-keys:
|
|
- "your-api-key-1"
|
|
- "your-api-key-2"
|
|
|
|
# API keys for official Generative Language API
|
|
generative-language-api-key:
|
|
- "AIzaSy...01"
|
|
- "AIzaSy...02"
|
|
- "AIzaSy...03"
|
|
- "AIzaSy...04"
|
|
|
|
# Claude API keys
|
|
claude-api-key:
|
|
- api-key: "sk-atSM..." # use the official claude API key, no need to set the base url
|
|
- api-key: "sk-atSM..."
|
|
base-url: "https://www.example.com" # use the custom claude API endpoint
|
|
|
|
# OpenAI compatibility providers
|
|
openai-compatibility:
|
|
- name: "openrouter" # The name of the provider; it will be used in the user agent and other places.
|
|
base-url: "https://openrouter.ai/api/v1" # The base URL of the provider.
|
|
api-keys: # The API keys for the provider. Add multiple keys if needed. Omit if unauthenticated access is allowed.
|
|
- "sk-or-v1-...b780"
|
|
- "sk-or-v1-...b781"
|
|
models: # The models supported by the provider.
|
|
- name: "moonshotai/kimi-k2:free" # The actual model name.
|
|
alias: "kimi-k2" # The alias used in the API.
|