mirror of
https://github.com/v2fly/v2ray-core.git
synced 2024-04-21 17:01:35 +00:00
Skip validating on empty http host config
This commit is contained in:
@@ -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
|
||||
}
|
||||
|
||||
Reference in New Issue
Block a user