diff options
| author | Florian Fischer <florian.fl.fischer@fau.de> | 2019-05-15 11:15:27 +0200 |
|---|---|---|
| committer | Florian Fischer <florian.fl.fischer@fau.de> | 2019-05-15 11:15:27 +0200 |
| commit | 10cb16c2b8945c02b5e7e2221bc6335d48996369 (patch) | |
| tree | c0972ef784cbc3b1cd9697df9056913b9eac241f /src/benchmarks/httpd/html | |
| parent | 404f81886198234b5608cb5ada4ae92404cfce92 (diff) | |
| download | allocbench-10cb16c2b8945c02b5e7e2221bc6335d48996369.tar.gz allocbench-10cb16c2b8945c02b5e7e2221bc6335d48996369.zip | |
add php to httpd benchmark
restructure httpd and php-fpm setup
OBJDIR/etc holds configs
OBJDIR/run holds pid files
OBJDIR/log holds all log files
don't daemonize nginx
Diffstat (limited to 'src/benchmarks/httpd/html')
| -rw-r--r-- | src/benchmarks/httpd/html/index.php | 10 |
1 files changed, 10 insertions, 0 deletions
diff --git a/src/benchmarks/httpd/html/index.php b/src/benchmarks/httpd/html/index.php new file mode 100644 index 0000000..0dde14e --- /dev/null +++ b/src/benchmarks/httpd/html/index.php @@ -0,0 +1,10 @@ +<?php + +// Show all information, defaults to INFO_ALL +phpinfo(); + +// Show just the module information. +// phpinfo(8) yields identical results. +phpinfo(INFO_MODULES); + +?> |
