├── .github └── ISSUE_TEMPLATE │ └── bug_report.md ├── .gitignore ├── LICENSE ├── README.md └── docs └── platforms.md /.github/ISSUE_TEMPLATE/bug_report.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tailscale/tailscale-synology/HEAD/.github/ISSUE_TEMPLATE/bug_report.md -------------------------------------------------------------------------------- /.gitignore: -------------------------------------------------------------------------------- 1 | _build/ 2 | _tailscale/ 3 | spks/ 4 | logs 5 | -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tailscale/tailscale-synology/HEAD/LICENSE -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tailscale/tailscale-synology/HEAD/README.md -------------------------------------------------------------------------------- /docs/platforms.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tailscale/tailscale-synology/HEAD/docs/platforms.md --------------------------------------------------------------------------------