├── .github └── workflows │ └── docker-publish.yml ├── .ruby-version ├── Dockerfile ├── Gemfile ├── Gemfile.lock ├── LICENSE ├── README.md ├── config.ru ├── docker-compose.yml └── proxy.rb /.github/workflows/docker-publish.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/peterkeen/tailscale-op-proxy/HEAD/.github/workflows/docker-publish.yml -------------------------------------------------------------------------------- /.ruby-version: -------------------------------------------------------------------------------- 1 | 3.1.1 2 | -------------------------------------------------------------------------------- /Dockerfile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/peterkeen/tailscale-op-proxy/HEAD/Dockerfile -------------------------------------------------------------------------------- /Gemfile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/peterkeen/tailscale-op-proxy/HEAD/Gemfile -------------------------------------------------------------------------------- /Gemfile.lock: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/peterkeen/tailscale-op-proxy/HEAD/Gemfile.lock -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/peterkeen/tailscale-op-proxy/HEAD/LICENSE -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/peterkeen/tailscale-op-proxy/HEAD/README.md -------------------------------------------------------------------------------- /config.ru: -------------------------------------------------------------------------------- 1 | require './proxy' 2 | 3 | run TailscaleOPProxy.new 4 | -------------------------------------------------------------------------------- /docker-compose.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/peterkeen/tailscale-op-proxy/HEAD/docker-compose.yml -------------------------------------------------------------------------------- /proxy.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/peterkeen/tailscale-op-proxy/HEAD/proxy.rb --------------------------------------------------------------------------------