summaryrefslogtreecommitdiffstats
path: root/.ship
Commit message (Collapse)AuthorAgeFilesLines
* Update domain to muxstr.northwest.ioClawd8 hours1-1/+1
|
* feat: add example config for VPS deploymentbndw3 days1-1/+1
| | | | | | | | | | | | | | | Add config.example.yaml based on .ship deployment setup: - gRPC on localhost:50051 - HTTP on localhost:8007 (not 8080) - Public URL: muxstr.x.bdw.to - Metrics enabled with dashboard - Auth/rate-limiting disabled by default Update .ship/service to use config file instead of individual flags: - Old: -db -grpc-addr -ws-addr -public-url flags - New: -config /var/lib/muxstr/config.yaml Deployment: Copy config.example.yaml to /var/lib/muxstr/config.yaml
* update deploy artifactsbndw3 days2-8/+9
|
* feat: rename allowed_pubkeys to allowed_npubs with normalizationbndw3 days2-0/+35
- Config now accepts npub format only (human-readable) - Automatically converts npubs to hex pubkeys at load time - Updated InterceptorOptions.AllowedPubkeys -> AllowedNpubs - Added validation to reject hex format in config (npub only) - Updated documentation to clarify npub-only config - Added comprehensive tests for npub normalization Config is for humans (npub), internal code uses hex pubkeys.