I read a lot of php manpages but only found information about SNI support in contexts - http://www.php.net/manual/en/context.ssl.php
Is it possible to obtain SNI send by browser when PHP is working as a server? Server is created using standard stream_socket_server() as described in eg. this post: http://www.php.net/manual/en/function.stream-socket-server.php#98616
Yes, server-side SNI support is available in PHP >= 5.6
Example Usage:
Notes:
"SNI_server_certs"
SSL context option maps host names to appropriate certs should a client handshake advertise SNI capability.*.
will utilize the matching cert if a client requests the primary host name or any subdomain thereof. So in the above example our domain2.pem will be used both for requests to domain2.com and subdomain.domain2.com"SNI_server_certs"
ctx option has no effect for client streams."SNI_server_certs"
array to actually use the SNI extension, though."SNI_enabled" => false
ctx option is also passed then the"SNI_server_certs"
array has no effect."local_cert"
ctx option or run the risk of connection failures from clients that do not support the SNI extension.Prior to PHP 5.6 server-side SNI is not possible ...
This is because encrypted PHP servers currently only use a single OpenSSL
SSL_CTX
C struct internally. Deploying SNI in a server requires a separateSSL_CTX
for each individual certificate you wish to present.Other New 5.6 TLS Features
There are quite a few SSL/TLS improvements for encrypted servers in the forthcoming PHP 5.6 release beyond SNI support. You can read about some of them here: