Re: httpd multiple site same address and port TLS issue

2022-08-31 Thread George
On 2022-08-29 05:50, Stuart Henderson wrote: On 2022-08-29, George wrote: I am wish to run multiple site from the same IP and use different TLS certs for each. .. Problem is I get the certificate for the first declared server each time unless I change the IP or port. How are you testing? I

Re: httpd multiple site same address and port TLS issue

2022-08-29 Thread Stuart Henderson
On 2022-08-29, George wrote: > I am wish to run multiple site from the same IP and use different TLS > certs for each. .. > Problem is I get the certificate for the first declared > server each time unless I change the IP or port. How are you testing? If you're using openssl s_client you need th

Re: httpd multiple site same address and port TLS issue

2022-08-29 Thread Zé Loff
On Sun, Aug 28, 2022 at 09:45:00PM -0400, George wrote: > Hi guys, > I am wish to run multiple site from the same IP and use different TLS certs > for each. > Example: > server "example01.com" { >   listen on 1.2.3.4 port 80 >   listen on 1.2.3.4 tls port 443 >   tls { >     certificate "example01.

httpd multiple site same address and port TLS issue

2022-08-28 Thread George
Hi guys, I am wish to run multiple site from the same IP and use different TLS certs for each. Example: server "example01.com" {   listen on 1.2.3.4 port 80   listen on 1.2.3.4 tls port 443   tls {     certificate "example01.com.fullchain.pem"     key "example01.com.key"   } } server