Skip to content
This repository has been archived by the owner on Jul 22, 2023. It is now read-only.

ping-localhost/grpc-bug-report

Folders and files

NameName
Last commit message
Last commit date

Latest commit

 

History

2 Commits
 
 
 
 
 
 
 
 
 
 
 
 

Repository files navigation

grpc/grpc issue #24469

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.

Setting up the client

You should open client/index.php and change the $caPath-variable to where your CA's are stored.

Start the client

Plain

php ./client/index.php

PHP server

cd client && php -S localhost:8000

Visiting http://localhost:8000/ will crash the server.

PHP-FPM using symfony serve

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