﻿id	summary	reporter	owner	description	type	status	priority	milestone	component	version	resolution	keywords	cc	uname	nginx_version
2007	"HTTP2 directive from one ""server"" passed to another"	pupkur@…		"Linux 3.10.0-1062.4.1.el7.x86_64 #1 SMP x86_64 GNU/Linux


nginx.conf
{{{
http {
    ...
    include a.conf
    include b.conf
    ...
}
}}}
a.conf
{{{
server {
    listen 443 ssl;
    server_name a.com;
    ...
}
}}}
b.conf
{{{
server {
    listen 443 ssl http2;
    server_name b.com;
    ...
}
}}}
Expected result:
    a.com HTTP1.1
    b.com HTTP2
Actual result:
    a.com HTTP2
    b.com HTTP2"	defect	closed	minor		documentation	1.16.x	duplicate			Linux nginx 3.10.0-1062.4.1.el7.x86_64 #1 SMP Fri Oct 18 17:15:30 UTC 2019 x86_64 x86_64 x86_64 GNU/Linux	nginx version: nginx/1.16.1
