From dbf222db991385e9691fccfb504938cd80cc5766 Mon Sep 17 00:00:00 2001 From: yurymuski Date: Thu, 25 Mar 2021 18:35:08 +0300 Subject: [PATCH] example update --- example.nginx.conf | 6 ++++++ 1 file changed, 6 insertions(+) diff --git a/example.nginx.conf b/example.nginx.conf index 0265c12..e334298 100644 --- a/example.nginx.conf +++ b/example.nginx.conf @@ -57,5 +57,11 @@ http { root html; index index.html index.htm; } + + location /host { + return 200 "http3 on $hostname"; + add_header Content-Type text/plain; + } + } }