Re: httpd(8) fix tls comparison of servers

2021-02-15 Thread Theo Buehler
On Mon, Feb 15, 2021 at 12:41:31PM +0100, Claudio Jeker wrote: > For SNI all TLS servers need to run with the same config. The config > parser has an extra step for this. The problem is it also compares the > TLS config params with non-TLS servers when a server block has both > listen * port 80

Re: httpd(8) fix tls comparison of servers

2021-02-15 Thread Florian Obser
OK florian On Mon, Feb 15, 2021 at 12:41:31PM +0100, Claudio Jeker wrote: > For SNI all TLS servers need to run with the same config. The config > parser has an extra step for this. The problem is it also compares the > TLS config params with non-TLS servers when a server block has both > listen

httpd(8) fix tls comparison of servers

2021-02-15 Thread Claudio Jeker
For SNI all TLS servers need to run with the same config. The config parser has an extra step for this. The problem is it also compares the TLS config params with non-TLS servers when a server block has both listen * port 80 and listen * tls port 443. The following diff fixes that and also