5f769b0293
The real Xray VPN config held credentials and was overwritten by git checkout on every deploy. Untrack it + gitignore it + ship config.json.example as the template, so the server-side config persists across redeploys. Co-Authored-By: Claude Opus 4.8 <noreply@anthropic.com>
27 lines
281 B
Plaintext
27 lines
281 B
Plaintext
## .NET
|
|
bin/
|
|
obj/
|
|
*.user
|
|
[Dd]ebug/
|
|
[Rr]elease/
|
|
artifacts/
|
|
|
|
## Rider / VS
|
|
.idea/
|
|
.vs/
|
|
|
|
## App
|
|
appsettings.*.local.json
|
|
.env
|
|
|
|
## OS
|
|
Thumbs.db
|
|
.DS_Store
|
|
|
|
# local dev run logs
|
|
/run.log
|
|
/run.err
|
|
|
|
# Xray VPN config holds real credentials — keep it server-only.
|
|
deploy/xray/config.json
|