mirror of
https://github.com/owncast/owncast.git
synced 2024-11-22 04:40:37 +03:00
17 lines
407 B
Go
17 lines
407 B
Go
package middleware
|
|
|
|
import (
|
|
"fmt"
|
|
"net/http"
|
|
"strings"
|
|
)
|
|
|
|
// SetHeaders will set our global headers for web resources.
|
|
func SetHeaders(w http.ResponseWriter, nonce string) {
|
|
// Content security policy
|
|
csp := []string{
|
|
fmt.Sprintf("script-src '%s' 'self'", nonce),
|
|
"worker-src 'self' blob:", // No single quotes around blob:
|
|
}
|
|
w.Header().Set("Content-Security-Policy", strings.Join(csp, "; "))
|
|
}
|