文档
一个 项目

abort

通过立即中止 HTTP 处理程序链并关闭连接来阻止对客户端的任何响应。任何在同一连接上并发活动的 HTTP 流都将被中断。

语法

abort [<matcher>]

示例

使用通配符证书时,强制关闭接收到的未知域名的连接

*.example.com {
    @foo host foo.example.com
    handle @foo {
        respond "This is foo!" 200
    }

    handle {
		# Unhandled domains fall through to here,
		# but we don't want to accept their requests
        abort
    }
}