Welcome to mirror list, hosted at ThFree Co, Russian Federation.

github.com/phpmyadmin/phpmyadmin.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorMichal Čihař <michal@cihar.com>2017-09-06 16:42:19 +0300
committerMichal Čihař <michal@cihar.com>2017-09-06 20:19:07 +0300
commitb9b6b45a4fd6026fa1cfc2dc36de201f9b0e9953 (patch)
tree0003c9e4c6b3818019427865433a23e439734c02 /test/php-fpm.conf
parentfddf289f55dcc761034f3018ebe0c13fc902d5f1 (diff)
Use nginx for running Selenium tests
It is supposed to perform better than PHP built in server. Signed-off-by: Michal Čihař <michal@cihar.com>
Diffstat (limited to 'test/php-fpm.conf')
-rw-r--r--test/php-fpm.conf15
1 files changed, 15 insertions, 0 deletions
diff --git a/test/php-fpm.conf b/test/php-fpm.conf
new file mode 100644
index 0000000000..e4c8f19381
--- /dev/null
+++ b/test/php-fpm.conf
@@ -0,0 +1,15 @@
+[global]
+error_log = %ROOT%/php.log
+log_level = warning
+
+[www]
+listen = %DIR%/php-fpm.sock
+listen.mode = 0666
+chdir = %ROOT%
+pm = dynamic
+pm.max_children = 5
+pm.start_servers = 2
+pm.min_spare_servers = 1
+pm.max_spare_servers = 3
+catch_workers_output = Yes
+clear_env = No