mirror of
https://github.com/DeBrosOfficial/orama.git
synced 2026-03-17 11:46:58 +00:00
114 lines
5.4 KiB
Go
114 lines
5.4 KiB
Go
package config
|
|
|
|
import "time"
|
|
|
|
// HTTPGatewayConfig contains HTTP reverse proxy gateway configuration
|
|
type HTTPGatewayConfig struct {
|
|
Enabled bool `yaml:"enabled"` // Enable HTTP gateway
|
|
ListenAddr string `yaml:"listen_addr"` // Address to listen on (e.g., ":8080")
|
|
NodeName string `yaml:"node_name"` // Node name for routing
|
|
Routes map[string]RouteConfig `yaml:"routes"` // Service routes
|
|
HTTPS HTTPSConfig `yaml:"https"` // HTTPS/TLS configuration
|
|
SNI SNIConfig `yaml:"sni"` // SNI-based TCP routing configuration
|
|
|
|
// Full gateway configuration (for API, auth, pubsub)
|
|
ClientNamespace string `yaml:"client_namespace"` // Namespace for network client
|
|
RQLiteDSN string `yaml:"rqlite_dsn"` // RQLite database DSN
|
|
OlricServers []string `yaml:"olric_servers"` // List of Olric server addresses
|
|
OlricTimeout time.Duration `yaml:"olric_timeout"` // Timeout for Olric operations
|
|
IPFSClusterAPIURL string `yaml:"ipfs_cluster_api_url"` // IPFS Cluster API URL
|
|
IPFSAPIURL string `yaml:"ipfs_api_url"` // IPFS API URL
|
|
IPFSTimeout time.Duration `yaml:"ipfs_timeout"` // Timeout for IPFS operations
|
|
|
|
// WebRTC configuration
|
|
TURN *TURNConfig `yaml:"turn"` // TURN/STUN server configuration
|
|
SFU *SFUConfig `yaml:"sfu"` // SFU (Selective Forwarding Unit) configuration
|
|
}
|
|
|
|
// HTTPSConfig contains HTTPS/TLS configuration for the gateway
|
|
type HTTPSConfig struct {
|
|
Enabled bool `yaml:"enabled"` // Enable HTTPS (port 443)
|
|
Domain string `yaml:"domain"` // Primary domain (e.g., node-123.orama.network)
|
|
AutoCert bool `yaml:"auto_cert"` // Use Let's Encrypt for automatic certificate
|
|
UseSelfSigned bool `yaml:"use_self_signed"` // Use self-signed certificates (pre-generated)
|
|
CertFile string `yaml:"cert_file"` // Path to certificate file (if not using auto_cert)
|
|
KeyFile string `yaml:"key_file"` // Path to key file (if not using auto_cert)
|
|
CacheDir string `yaml:"cache_dir"` // Directory for Let's Encrypt certificate cache
|
|
HTTPPort int `yaml:"http_port"` // HTTP port for ACME challenge (default: 80)
|
|
HTTPSPort int `yaml:"https_port"` // HTTPS port (default: 443)
|
|
Email string `yaml:"email"` // Email for Let's Encrypt account
|
|
}
|
|
|
|
// SNIConfig contains SNI-based TCP routing configuration for port 7001
|
|
type SNIConfig struct {
|
|
Enabled bool `yaml:"enabled"` // Enable SNI-based TCP routing
|
|
ListenAddr string `yaml:"listen_addr"` // Address to listen on (e.g., ":7001")
|
|
Routes map[string]string `yaml:"routes"` // SNI hostname -> backend address mapping
|
|
CertFile string `yaml:"cert_file"` // Path to certificate file
|
|
KeyFile string `yaml:"key_file"` // Path to key file
|
|
}
|
|
|
|
// RouteConfig defines a single reverse proxy route
|
|
type RouteConfig struct {
|
|
PathPrefix string `yaml:"path_prefix"` // URL path prefix (e.g., "/rqlite/http")
|
|
BackendURL string `yaml:"backend_url"` // Backend service URL
|
|
Timeout time.Duration `yaml:"timeout"` // Request timeout
|
|
WebSocket bool `yaml:"websocket"` // Support WebSocket upgrades
|
|
}
|
|
|
|
// ClientConfig represents configuration for network clients
|
|
type ClientConfig struct {
|
|
AppName string `yaml:"app_name"`
|
|
DatabaseName string `yaml:"database_name"`
|
|
BootstrapPeers []string `yaml:"bootstrap_peers"`
|
|
ConnectTimeout time.Duration `yaml:"connect_timeout"`
|
|
RetryAttempts int `yaml:"retry_attempts"`
|
|
}
|
|
|
|
// TURNConfig contains TURN/STUN server credential configuration
|
|
type TURNConfig struct {
|
|
// SharedSecret is the shared secret for TURN credential generation (HMAC-SHA1)
|
|
SharedSecret string `yaml:"shared_secret"`
|
|
|
|
// TTL is the time-to-live for generated credentials (default: 24 hours)
|
|
TTL time.Duration `yaml:"ttl"`
|
|
|
|
// ExternalHost is the external hostname or IP address for STUN/TURN URLs
|
|
// Production: Set to your public domain (e.g., "turn.example.com")
|
|
// Development: Leave empty for auto-detection of LAN IP
|
|
ExternalHost string `yaml:"external_host"`
|
|
|
|
// STUNURLs are the STUN server URLs to return to clients
|
|
// Use ":::" as placeholder for ExternalHost (e.g., "stun:::3478" -> "stun:host:3478")
|
|
STUNURLs []string `yaml:"stun_urls"`
|
|
|
|
// TURNURLs are the TURN server URLs to return to clients
|
|
// Use ":::" as placeholder for ExternalHost (e.g., "turn:::3478" -> "turn:host:3478")
|
|
TURNURLs []string `yaml:"turn_urls"`
|
|
|
|
// TLSEnabled indicates whether TURNS (TURN over TLS) is available
|
|
TLSEnabled bool `yaml:"tls_enabled"`
|
|
}
|
|
|
|
// SFUConfig contains WebRTC SFU (Selective Forwarding Unit) configuration
|
|
type SFUConfig struct {
|
|
// Enabled enables the SFU service
|
|
Enabled bool `yaml:"enabled"`
|
|
|
|
// MaxParticipants is the maximum number of participants per room (default: 10)
|
|
MaxParticipants int `yaml:"max_participants"`
|
|
|
|
// MediaTimeout is the timeout for media operations (default: 30 seconds)
|
|
MediaTimeout time.Duration `yaml:"media_timeout"`
|
|
|
|
// ICEServers are additional ICE servers for WebRTC connections
|
|
ICEServers []ICEServerConfig `yaml:"ice_servers"`
|
|
}
|
|
|
|
// ICEServerConfig represents a single ICE server configuration
|
|
type ICEServerConfig struct {
|
|
URLs []string `yaml:"urls"`
|
|
Username string `yaml:"username,omitempty"`
|
|
Credential string `yaml:"credential,omitempty"`
|
|
}
|