disable csrf until SSL
This commit is contained in:
parent
765659b3ee
commit
e45be9fbd3
11
main.go
11
main.go
|
@ -104,15 +104,18 @@ func main() {
|
||||||
dbConnect()
|
dbConnect()
|
||||||
initTemplates()
|
initTemplates()
|
||||||
muxRouter := init_route_handlers()
|
muxRouter := init_route_handlers()
|
||||||
errHandler := csrf.ErrorHandler( CSRFErrorHandler{} )
|
//errHandler := csrf.ErrorHandler( CSRFErrorHandler{} )
|
||||||
|
|
||||||
// Terrible. TODO: Get SSL for prod, and then wrap in if(dev) { {
|
// Terrible. TODO: Get SSL for prod, and then wrap in if(dev) { {
|
||||||
csrfSecurityOption := csrf.Secure(false)
|
//csrfSecurityOption := csrf.Secure(false)
|
||||||
csrfMaxTimeOption := csrf.MaxAge(3600 * 24 * 3) // 3 Days - a little more wiggle room
|
//csrfMaxTimeOption := csrf.MaxAge(3600 * 24 * 3) // 3 Days - a little more wiggle room
|
||||||
|
|
||||||
fmt.Println("Listening on", config.Port, "...")
|
fmt.Println("Listening on", config.Port, "...")
|
||||||
|
|
||||||
err := http.ListenAndServe(":"+config.Port, csrf.Protect([]byte(csrfSecret()), errHandler, csrfSecurityOption, csrfMaxTimeOption)(muxRouter))
|
// Disabled CSRF until SSL (and sorting why the popup is throwing CSRF errs
|
||||||
|
// for tor and FF with ublock + https everywhere)
|
||||||
|
//err := http.ListenAndServe(":"+config.Port, csrf.Protect([]byte(csrfSecret()), errHandler, csrfSecurityOption, csrfMaxTimeOption)(muxRouter))
|
||||||
|
err := http.ListenAndServe(":"+config.Port, muxRouter)
|
||||||
if err != nil {
|
if err != nil {
|
||||||
fmt.Println("Fatal Error: ", err)
|
fmt.Println("Fatal Error: ", err)
|
||||||
}
|
}
|
||||||
|
|
Loading…
Reference in New Issue