* Fix php-ngx to use correct url * Fixed the correct config
@@ -2,7 +2,7 @@
"framework": "php-ngx",
"tests": [{
"default": {
- "plaintext_url": "/hello",
+ "plaintext_url": "/plaintext",
"json_url": "/json",
"port": 8080,
"approach": "Realistic",
@@ -35,7 +35,7 @@ http {
php_keepalive 256;
- location = /hello {
+ location = /plaintext {
content_by_php '
ngx_header_set("Content-Type", "text/plain");
echo "Hello, World!";
@@ -38,7 +38,7 @@ http {
add_header Content-Type text/plain;