Skip validating on empty http host config

This commit is contained in:
heimoshuiyu
2023-02-18 14:39:33 +00:00
committed by Shelikhoo
parent 0dcf8cad0d
commit b8ab91b0d3
+1 -1
View File
@@ -58,7 +58,7 @@ func (fw flushWriter) Write(p []byte) (n int, err error) {
func (l *Listener) ServeHTTP(writer http.ResponseWriter, request *http.Request) {
host := request.Host
if !l.config.isValidHost(host) {
if len(l.config.Host) != 0 && !l.config.isValidHost(host) {
writer.WriteHeader(404)
return
}