mirror of
https://github.com/aljazceru/satdress.git
synced 2025-12-17 05:24:20 +01:00
add SITE_OWNER.
This commit is contained in:
11
main.go
11
main.go
@@ -19,10 +19,11 @@ import (
|
|||||||
)
|
)
|
||||||
|
|
||||||
type Settings struct {
|
type Settings struct {
|
||||||
Host string `envconfig:"HOST" default:"0.0.0.0"`
|
Host string `envconfig:"HOST" default:"0.0.0.0"`
|
||||||
Port string `envconfig:"PORT" required:"true"`
|
Port string `envconfig:"PORT" required:"true"`
|
||||||
Domain string `envconfig:"DOMAIN" required:"true"`
|
Domain string `envconfig:"DOMAIN" required:"true"`
|
||||||
Secret string `envconfig:"SECRET" required:"true"`
|
Secret string `envconfig:"SECRET" required:"true"`
|
||||||
|
SiteOwner string `envconfig:"SITE_OWNER" required:"true"`
|
||||||
}
|
}
|
||||||
|
|
||||||
var s Settings
|
var s Settings
|
||||||
@@ -50,7 +51,7 @@ func main() {
|
|||||||
router.Path("/").HandlerFunc(
|
router.Path("/").HandlerFunc(
|
||||||
func(w http.ResponseWriter, r *http.Request) {
|
func(w http.ResponseWriter, r *http.Request) {
|
||||||
w.Header().Set("content-type", "text/html")
|
w.Header().Set("content-type", "text/html")
|
||||||
fmt.Fprintf(w, html)
|
fmt.Fprintf(w, html+"<p>offered by %s</p>", s.SiteOwner)
|
||||||
},
|
},
|
||||||
)
|
)
|
||||||
|
|
||||||
|
|||||||
Reference in New Issue
Block a user