generated from DAM/ts-TEMPLATE
- Add dual serve config (serve.json + serve.headscale.json)
- Add SECURITY.md with default passwords warning
- Add .env.example with clear REQUIRED / REFERENCE / CUSTOMIZE sections
- Rewrite README with clear Tailscale vs Headscale paths
- Harden .gitignore (env files, keys, Tailscale state)
- Update docker-compose.yml with clear section labels
- Make volume names service-specific ({{service}}-db-data)
- Ensure both db and app services depend on the Tailscale sidecar
30 lines
445 B
JSON
30 lines
445 B
JSON
{
|
|
"TCP": {
|
|
"80": {
|
|
"HTTP": true
|
|
},
|
|
"443": {
|
|
"HTTPS": true
|
|
}
|
|
},
|
|
"Web": {
|
|
"${TS_CERT_DOMAIN}:80": {
|
|
"Handlers": {
|
|
"/": {
|
|
"Proxy": "http://127.0.0.1:{{port}}"
|
|
}
|
|
}
|
|
},
|
|
"${TS_CERT_DOMAIN}:443": {
|
|
"Handlers": {
|
|
"/": {
|
|
"Proxy": "http://127.0.0.1:{{port}}"
|
|
}
|
|
}
|
|
}
|
|
},
|
|
"AllowFunnel": {
|
|
"${TS_CERT_DOMAIN}:443": false
|
|
}
|
|
}
|