mirror of
https://github.com/caddyserver/caddy.git
synced 2024-12-23 22:27:38 -05:00
Implement Caddy-Sponsors HTTP response header
(See EULA.) Personally-licensed official Caddy builds cannot remove this header by configuration. The commercially-licensed builds of Caddy don't have this header.
This commit is contained in:
parent
f069a575cc
commit
56453e9664
2 changed files with 6 additions and 0 deletions
|
@ -27,6 +27,10 @@ func (h Headers) ServeHTTP(w http.ResponseWriter, r *http.Request) (int, error)
|
||||||
for _, rule := range h.Rules {
|
for _, rule := range h.Rules {
|
||||||
if httpserver.Path(r.URL.Path).Matches(rule.Path) {
|
if httpserver.Path(r.URL.Path).Matches(rule.Path) {
|
||||||
for name := range rule.Headers {
|
for name := range rule.Headers {
|
||||||
|
if name == "Caddy-Sponsors" || name == "-Caddy-Sponsors" {
|
||||||
|
// see EULA
|
||||||
|
continue
|
||||||
|
}
|
||||||
|
|
||||||
// One can either delete a header, add multiple values to a header, or simply
|
// One can either delete a header, add multiple values to a header, or simply
|
||||||
// set a header.
|
// set a header.
|
||||||
|
|
|
@ -343,6 +343,8 @@ func (s *Server) ServeHTTP(w http.ResponseWriter, r *http.Request) {
|
||||||
r = r.WithContext(c)
|
r = r.WithContext(c)
|
||||||
|
|
||||||
w.Header().Set("Server", caddy.AppName)
|
w.Header().Set("Server", caddy.AppName)
|
||||||
|
sponsors := "Minio, Uptime Robot, and Sourcegraph"
|
||||||
|
w.Header().Set("Caddy-Sponsors", "This free web server is made possible by its sponsors: "+sponsors)
|
||||||
|
|
||||||
status, _ := s.serveHTTP(w, r)
|
status, _ := s.serveHTTP(w, r)
|
||||||
|
|
||||||
|
|
Loading…
Reference in a new issue