Initial QSfera import
This commit is contained in:
+26
@@ -0,0 +1,26 @@
|
||||
/*
|
||||
Package secure is an HTTP middleware for Go that facilitates some quick security wins.
|
||||
|
||||
package main
|
||||
|
||||
import (
|
||||
"net/http"
|
||||
|
||||
"github.com/unrolled/secure"
|
||||
)
|
||||
|
||||
var myHandler = http.HandlerFunc(func(w http.ResponseWriter, r *http.Request) {
|
||||
w.Write([]byte("hello world"))
|
||||
})
|
||||
|
||||
func main() {
|
||||
secureMiddleware := secure.New(secure.Options{
|
||||
AllowedHosts: []string{"www.example.com", "sub.example.com"},
|
||||
SSLRedirect: true,
|
||||
})
|
||||
|
||||
app := secureMiddleware.Handler(myHandler)
|
||||
http.ListenAndServe("127.0.0.1:3000", app)
|
||||
}
|
||||
*/
|
||||
package secure
|
||||
Reference in New Issue
Block a user