Repository for grpc/grpc#24469. This issue has been resolved, so this repository has been archived.
To trigger the error add a broken cert to the ssl
folder and run make
to start the server.
Once it's running you can use either of the options below to trigger the client.
You should open client/index.php
and change the $caPath
-variable to where your CA's are stored.
php ./client/index.php
cd client && php -S localhost:8000
Visiting http://localhost:8000/ will crash the server.
cd client && symfony serve --no-tls --dir=.
Visiting http://localhost:8000/ you'll be greeted by an error.
Note: For more information about the
symfony
-cli and how to install it, checkout Symfony.com