Compare commits
3 Commits
Author | SHA1 | Date | |
---|---|---|---|
99c0137034 | |||
64551704a3 | |||
d2d8e6ecad |
15
main.go
15
main.go
@ -50,6 +50,8 @@ var (
|
||||
)
|
||||
|
||||
func main() {
|
||||
flag.Parse()
|
||||
|
||||
viper.SetDefault("bind", ":8080")
|
||||
|
||||
viper.SetConfigName("dlrouter") // name of config file (without extension)
|
||||
@ -112,12 +114,13 @@ func main() {
|
||||
r.Use(RealIPMiddleware)
|
||||
r.Use(logger.Logger("router", log.StandardLogger()))
|
||||
|
||||
r.HandleFunc("/status", statusHandler)
|
||||
r.HandleFunc("/mirrors", mirrorsHandler)
|
||||
r.HandleFunc("/reload", reloadHandler)
|
||||
r.HandleFunc("/dl_map", dlMapHandler)
|
||||
r.Handle("/metrics", promhttp.Handler())
|
||||
r.HandleFunc("/", redirectHandler)
|
||||
r.Get("/status", statusHandler)
|
||||
r.Get("/mirrors", mirrorsHandler)
|
||||
r.Post("/reload", reloadHandler)
|
||||
r.Get("/dl_map", dlMapHandler)
|
||||
r.Get("/metrics", promhttp.Handler().ServeHTTP)
|
||||
|
||||
r.NotFound(redirectHandler)
|
||||
|
||||
go http.ListenAndServe(viper.GetString("bind"), r)
|
||||
|
||||
|
Reference in New Issue
Block a user