From 88313da4b83f069a52ec953196dc15fcebda04cd Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?L=C3=A9o=20Colombaro?= Date: Sun, 23 Jul 2023 11:58:37 +0200 Subject: [PATCH] Split protocol support into separate files --- h5bp/protocol/http2.conf | 7 +++++++ h5bp/protocol/http3.conf | 7 +++++++ 2 files changed, 14 insertions(+) create mode 100644 h5bp/protocol/http2.conf create mode 100644 h5bp/protocol/http3.conf diff --git a/h5bp/protocol/http2.conf b/h5bp/protocol/http2.conf new file mode 100644 index 00000000..431aeea7 --- /dev/null +++ b/h5bp/protocol/http2.conf @@ -0,0 +1,7 @@ +# ---------------------------------------------------------------------- +# | HTTP/2 Support | +# ---------------------------------------------------------------------- + +# https://nginx.org/en/docs/http/ngx_http_v2_module.html + +http2 on; diff --git a/h5bp/protocol/http3.conf b/h5bp/protocol/http3.conf new file mode 100644 index 00000000..39f3269f --- /dev/null +++ b/h5bp/protocol/http3.conf @@ -0,0 +1,7 @@ +# ---------------------------------------------------------------------- +# | HTTP/3 Support | +# ---------------------------------------------------------------------- + +# https://nginx.org/en/docs/http/ngx_http_v3_module.html + +http3 on;