Add HSTS header
This commit is contained in:
parent
d225323628
commit
802dd65edf
1 changed files with 3 additions and 2 deletions
5
main.go
5
main.go
|
@ -242,8 +242,8 @@ func root(w http.ResponseWriter, req *http.Request) {
|
||||||
const msg = `
|
const msg = `
|
||||||
HTTP youtube proxy for https://inv.nadeko.net
|
HTTP youtube proxy for https://inv.nadeko.net
|
||||||
https://git.nadeko.net/Fijxu/http3-ytproxy
|
https://git.nadeko.net/Fijxu/http3-ytproxy
|
||||||
|
|
||||||
Routes:
|
Routes:
|
||||||
/stats
|
/stats
|
||||||
/health`
|
/health`
|
||||||
io.WriteString(w, msg)
|
io.WriteString(w, msg)
|
||||||
|
@ -336,6 +336,7 @@ func beforeProxy(next http.HandlerFunc) http.HandlerFunc {
|
||||||
w.Header().Set("Access-Control-Allow-Headers", "*")
|
w.Header().Set("Access-Control-Allow-Headers", "*")
|
||||||
w.Header().Set("Access-Control-Allow-Methods", "GET, HEAD, OPTIONS")
|
w.Header().Set("Access-Control-Allow-Methods", "GET, HEAD, OPTIONS")
|
||||||
w.Header().Set("Access-Control-Max-Age", "1728000")
|
w.Header().Set("Access-Control-Max-Age", "1728000")
|
||||||
|
w.Header().Set("Strict-Transport-Security", "max-age=86400")
|
||||||
// } else {
|
// } else {
|
||||||
// w.WriteHeader(401)
|
// w.WriteHeader(401)
|
||||||
// io.WriteString(w, "Only requests coming from inv.nadeko.net are allowed.")
|
// io.WriteString(w, "Only requests coming from inv.nadeko.net are allowed.")
|
||||||
|
|
Loading…
Reference in a new issue