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
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
263
264
265
266
267
268
269
270
271
272
273
274
275
276
277
278
279
280
281
282
283
284
285
286
287
288
289
290
291
292
293
294
295
296
297
298
299
300
301
302
303
304
305
306
307
308
309
310
311
312
313
314
315
316
317
318
319
320
321
322
323
324
325
326
327
328
329
330
331
332
333
334
335
336
337
338
339
340
341
342
343
344
345
346
347
348
349
350
351
352
353
354
355
356
357
358
359
360
361
362
363
364
365
366
367
368
369
370
371
372
373
374
375
376
377
378
379
380
381
382
383
384
385
386
387
388
389
390
391
392
393
394
395
396
397
398
399
400
401
402
403
404
405
406
407
408
409
410
411
412
413
414
415
416
417
418
419
420
421
422
423
424
425
426
427
428
429
430
431
432
433
434
435
436
437
438
439
440
441
442
443
444
445
446
447
448
449
450
451
452
453
|
# Configuration
This package provides configuration management for the relay with support for YAML files and environment variable overrides.
## Overview
Configuration can be loaded from:
1. **YAML file** - Primary configuration source
2. **Environment variables** - Override file values
3. **Defaults** - Sensible defaults if not specified
## Usage
### Load from File
```go
import "northwest.io/muxstr/internal/config"
// Load configuration
cfg, err := config.Load("config.yaml")
if err != nil {
log.Fatal(err)
}
// Use configuration
fmt.Printf("gRPC listening on %s\n", cfg.Server.GrpcAddr)
```
### Load with Environment Overrides
```bash
# Set environment variables
export MUXSTR_SERVER_GRPC_ADDR=":50051"
export MUXSTR_AUTH_REQUIRED=true
export MUXSTR_RATE_LIMIT_DEFAULT_RPS=100
# Run relay
./relay -config config.yaml
```
Environment variables use the format: `MUXSTR_<SECTION>_<KEY>`
### Use Defaults
```go
// Get default configuration
cfg := config.Default()
```
## Configuration File Format
### Complete Example
```yaml
# Server configuration
server:
# gRPC server address
grpc_addr: ":50051"
# HTTP server address (for Connect and WebSocket)
http_addr: ":8080"
# Public URL for reverse proxy deployments (optional)
# Example: "relay.example.com"
public_url: ""
# Read timeout for requests (optional)
read_timeout: "30s"
# Write timeout for responses (optional)
write_timeout: "30s"
# Database configuration
database:
# Path to SQLite database file
path: "relay.db"
# Note: Connection pooling is automatically configured for SQLite.
# SQLite uses a single connection for optimal performance.
# Authentication configuration
auth:
# Enable authentication
enabled: false
# Require authentication for all requests
# If false, authentication is optional (pubkey available if provided)
required: false
# Timestamp window in seconds for replay protection
timestamp_window: 60
# Allowed npubs for read operations (optional, whitelist)
# If empty, all valid signatures are accepted for reads
# Use npub format only (e.g., npub1...)
allowed_npubs_read: []
# Allowed npubs for write operations (optional, whitelist)
# If empty, all valid signatures are accepted for writes
# Use npub format only (e.g., npub1...)
allowed_npubs_write: []
# Example use cases:
# - Public relay: allowed_npubs_write (only some can publish), empty read (everyone can read)
# - Private relay: both lists populated (restricted read and write)
# - Open relay: both lists empty (everyone can read and write)
#
# Example:
# allowed_npubs_read:
# - npub1a2b3c4d5e6f...
# allowed_npubs_write:
# - npub1a2b3c4d5e6f...
# Skip authentication for these methods
skip_methods:
- "/grpc.health.v1.Health/Check"
# Rate limiting configuration
rate_limit:
# Enable rate limiting
enabled: false
# Default rate limit (requests per second)
default_rps: 10
# Default burst size (token bucket capacity)
default_burst: 20
# Rate limit for unauthenticated users (per IP)
ip_rps: 5
ip_burst: 10
# Method-specific limits
methods:
"/nostr.v1.NostrRelay/PublishEvent":
rps: 2
burst: 5
"/nostr.v1.NostrRelay/Subscribe":
rps: 1
burst: 3
# User-specific limits (VIP/premium users)
users:
"vip-pubkey-here":
rps: 100
burst: 200
# Skip rate limiting for these methods
skip_methods:
- "/grpc.health.v1.Health/Check"
# Skip rate limiting for these pubkeys (admins)
skip_users: []
# Cleanup interval for idle limiters
cleanup_interval: "5m"
# Max idle time before limiter is removed
max_idle_time: "10m"
# Metrics configuration
metrics:
# Enable Prometheus metrics
enabled: true
# Metrics HTTP server address
addr: ":9090"
# Metrics path
path: "/metrics"
# Namespace for metrics
namespace: "muxstr"
# Subsystem for metrics
subsystem: "relay"
# Logging configuration
logging:
# Log level: debug, info, warn, error
level: "info"
# Log format: json, text
format: "json"
# Output: stdout, stderr, or file path
output: "stdout"
# Storage configuration
storage:
# Enable automatic compaction
auto_compact: true
# Compact interval
compact_interval: "24h"
# Maximum event age (0 = unlimited)
max_event_age: "0"
```
### Minimal Example
```yaml
server:
grpc_addr: ":50051"
http_addr: ":8080"
database:
path: "relay.db"
metrics:
enabled: true
addr: ":9090"
```
## Environment Variables
All configuration values can be overridden with environment variables using the pattern:
```
MUXSTR_<SECTION>_<SUBSECTION>_<KEY>=value
```
Examples:
| Config Path | Environment Variable |
|-------------|---------------------|
| `server.grpc_addr` | `MUXSTR_SERVER_GRPC_ADDR` |
| `database.path` | `MUXSTR_DATABASE_PATH` |
| `auth.required` | `MUXSTR_AUTH_REQUIRED` |
| `rate_limit.default_rps` | `MUXSTR_RATE_LIMIT_DEFAULT_RPS` |
| `metrics.enabled` | `MUXSTR_METRICS_ENABLED` |
Complex types:
```bash
# Lists (comma-separated, npub format)
export MUXSTR_AUTH_ALLOWED_NPUBS_READ="npub1...,npub1..."
export MUXSTR_AUTH_ALLOWED_NPUBS_WRITE="npub1..."
# Durations
export MUXSTR_SERVER_READ_TIMEOUT="30s"
export MUXSTR_DATABASE_MAX_LIFETIME="1h"
# Booleans
export MUXSTR_AUTH_ENABLED=true
export MUXSTR_METRICS_ENABLED=false
```
## Validation
Configuration is validated on load:
```go
cfg, err := config.Load("config.yaml")
if err != nil {
// Validation errors include detailed messages
log.Fatalf("Invalid configuration: %v", err)
}
```
Validation checks:
- Required fields are present
- Addresses are valid (host:port format)
- File paths are accessible
- Numeric values are in valid ranges
- Durations are parseable
## Default Values
If not specified, the following defaults are used:
```go
Server:
GrpcAddr: ":50051"
HttpAddr: ":8080"
ReadTimeout: 30s
WriteTimeout: 30s
Database:
Path: "relay.db"
Auth:
Enabled: false
Required: false
TimestampWindow: 60
RateLimit:
Enabled: false
DefaultRPS: 10
DefaultBurst: 20
IPRPS: 5
IPBurst: 10
CleanupInterval: 5m
MaxIdleTime: 10m
Metrics:
Enabled: true
Addr: ":9090"
Path: "/metrics"
Namespace: "muxstr"
Subsystem: "relay"
Logging:
Level: "info"
Format: "json"
Output: "stdout"
```
## Configuration Precedence
Values are loaded in this order (later overrides earlier):
1. **Defaults** - Built-in default values
2. **Config file** - Values from YAML file
3. **Environment variables** - OS environment overrides
Example:
```yaml
# config.yaml
server:
grpc_addr: ":50051"
```
```bash
# Environment override
export MUXSTR_SERVER_GRPC_ADDR=":9000"
# Result: gRPC listens on :9000 (env var wins)
```
## Reloading Configuration
Configuration can be reloaded without restart (future feature):
```go
// Watch for changes
watcher, err := config.Watch("config.yaml")
if err != nil {
log.Fatal(err)
}
for cfg := range watcher.Updates {
// Apply new configuration
updateServer(cfg)
}
```
## Best Practices
1. **Use config files for static settings**: Server addresses, paths, etc.
2. **Use env vars for deployment-specific settings**: Secrets, environment-specific URLs
3. **Keep secrets out of config files**: Use env vars or secret management
4. **Version control your config**: Check in config.yaml (without secrets)
5. **Document custom settings**: Add comments to config.yaml
6. **Validate in CI**: Run `relay -config config.yaml -validate` in CI pipeline
7. **Use different configs per environment**: `config.dev.yaml`, `config.prod.yaml`
## Example Configurations
### Development
```yaml
server:
grpc_addr: ":50051"
http_addr: ":8080"
database:
path: "relay-dev.db"
auth:
enabled: false
rate_limit:
enabled: false
metrics:
enabled: true
addr: ":9090"
logging:
level: "debug"
format: "text"
```
### Production
```yaml
server:
grpc_addr: ":50051"
http_addr: ":8080"
public_url: "relay.example.com"
read_timeout: "30s"
write_timeout: "30s"
database:
path: "/var/lib/muxstr/relay.db"
max_connections: 50
auth:
enabled: true
required: false
timestamp_window: 60
rate_limit:
enabled: true
default_rps: 10
default_burst: 20
methods:
"/nostr.v1.NostrRelay/PublishEvent":
rps: 2
burst: 5
metrics:
enabled: true
addr: ":9090"
logging:
level: "info"
format: "json"
output: "/var/log/muxstr/relay.log"
```
### High-Performance
```yaml
server:
grpc_addr: ":50051"
http_addr: ":8080"
database:
path: "/mnt/fast-ssd/relay.db"
max_connections: 100
max_lifetime: "30m"
auth:
enabled: true
required: true
timestamp_window: 30
rate_limit:
enabled: true
default_rps: 100
default_burst: 200
metrics:
enabled: true
addr: ":9090"
logging:
level: "warn"
format: "json"
```
|