Documentation ¶
Index ¶
Constants ¶
This section is empty.
Variables ¶
This section is empty.
Functions ¶
This section is empty.
Types ¶
type Config ¶
type Config struct { // Prefix is a custom prefix to handle admin endpoints on. Prefix string // WebPath is path to admin web application to serve. WebPath string // WebProxyAddress is an address for proxying to the running admin web application app. // So it's possible to run web app in dev mode and point Centrifugo to its address for // development purposes. WebProxyAddress string // WebFS is custom filesystem to serve as admin web application. // In our case we pass embedded web interface which implements // FileSystem interface. WebFS http.FileSystem // Password is an admin password. Password string // Secret is a secret to generate auth token for admin requests. Secret string // Insecure turns on insecure mode for admin endpoints - no auth // required to connect to web interface and for requests to admin API. // Admin resources must be protected by firewall rules in production when // this option enabled otherwise everyone from internet can make admin // actions. Insecure bool }
Config ...
type Handler ¶
type Handler struct {
// contains filtered or unexported fields
}
Handler handles admin web interface endpoints.
func NewHandler ¶
NewHandler creates new Handler.
Click to show internal directories.
Click to hide internal directories.