mirror of
https://github.com/juanfont/headscale.git
synced 2024-11-23 10:05:19 +00:00
40c5263927
This code adds new http handlers that will generate iOS and macOS configuration profiles allowing us to override the Control server of the official Tailscale.app. Currently, macOS is working, as I have not found the correct "key" to inject for iOS. This means that a profile will allow users to no longer log in via the command line, but they can use the app.
26 lines
822 B
Modula-2
26 lines
822 B
Modula-2
module github.com/juanfont/headscale
|
|
|
|
go 1.16
|
|
|
|
require (
|
|
github.com/AlecAivazis/survey/v2 v2.0.5
|
|
github.com/gin-gonic/gin v1.7.2
|
|
github.com/gofrs/uuid v4.0.0+incompatible // indirect
|
|
github.com/hako/durafmt v0.0.0-20210608085754-5c1018a4e16b
|
|
github.com/klauspost/compress v1.13.1
|
|
github.com/lib/pq v1.10.2 // indirect
|
|
github.com/mattn/go-sqlite3 v1.14.7 // indirect
|
|
github.com/spf13/cobra v1.1.3
|
|
github.com/spf13/viper v1.8.1
|
|
github.com/tailscale/hujson v0.0.0-20200924210142-dde312d0d6a2
|
|
golang.org/x/crypto v0.0.0-20210616213533-5ff15b29337e
|
|
gopkg.in/check.v1 v1.0.0-20201130134442-10cb98267c6c
|
|
gopkg.in/yaml.v2 v2.4.0
|
|
gorm.io/datatypes v1.0.1
|
|
gorm.io/driver/postgres v1.1.0
|
|
gorm.io/driver/sqlite v1.1.4
|
|
gorm.io/gorm v1.21.11
|
|
inet.af/netaddr v0.0.0-20210603230628-bf05d8b52dda
|
|
tailscale.com v1.10.0
|
|
)
|