-
Notifications
You must be signed in to change notification settings - Fork 2
/
Copy path.env
56 lines (45 loc) · 1.26 KB
/
.env
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
49
50
51
52
53
54
55
# SIPREC Server Environment Configuration
# Local development configuration
# Network Configuration
EXTERNAL_IP=127.0.0.1 # Use loopback for local testing
INTERNAL_IP=127.0.0.1 # Use loopback for local testing
PORTS=5060,5061 # Standard SIP ports
RTP_PORT_MIN=10000
RTP_PORT_MAX=20000
# TLS/Security Configuration
ENABLE_TLS=true
TLS_PORT=5062
TLS_CERT_PATH=./certs/cert.pem
TLS_KEY_PATH=./certs/key.pem
ENABLE_SRTP=true
# HTTP Server Configuration
HTTP_PORT=8080
HTTP_ENABLED=true
HTTP_ENABLE_METRICS=true
HTTP_ENABLE_API=true
HTTP_READ_TIMEOUT=10s
HTTP_WRITE_TIMEOUT=30s
# Recording Configuration
RECORDING_DIR=./recordings
RECORDING_MAX_DURATION_HOURS=4
RECORDING_CLEANUP_DAYS=30
# Speech-to-Text Configuration
SUPPORTED_VENDORS=mock
DEFAULT_SPEECH_VENDOR=mock
SUPPORTED_CODECS=PCMU,PCMA,G722
# Resource Configuration
MAX_CONCURRENT_CALLS=10
# Logging Configuration
LOG_LEVEL=debug
LOG_FORMAT=text
LOG_OUTPUT_FILE=siprec_local.log
# Session Redundancy Configuration
ENABLE_REDUNDANCY=true
SESSION_TIMEOUT=30s
SESSION_CHECK_INTERVAL=10s
REDUNDANCY_STORAGE_TYPE=memory
# Audio Processing Configuration
ENABLE_AUDIO_PROCESSING=true
# AMQP Configuration for Transcription Streaming
AMQP_URL=amqp://guest:guest@localhost:5672/
AMQP_QUEUE_NAME=siprec_transcriptions