x64architecture / wnmp

An easy Nginx, MariaDB and PHP environment for Windows.
https://wnmp.x64architecture.com
GNU General Public License v3.0
509 stars 110 forks source link

configuring www.conf #43

Closed slifin closed 9 years ago

slifin commented 9 years ago

I'm trying to raise request_terminate_timeout all tutorials on the web say to modify this value inside www.conf but in the wnmp distro of nginx this file doesn't appear to be present

Where can we find www.conf?

x64architecture commented 9 years ago

@slifin www.conf is only found in PHP - FastCGI Process Manager (FPM) which is only supported in BSD, Linux & Unix OS's. PHP on Windows only supports PHP - FastCGI. Maybe you were looking for this option instead? _max_executiontime

_request_terminatetimeout The timeout for serving a single request after which the worker process will be killed. This option should be used when the 'max_execution_time' ini option does not stop script execution for some reason. A value of '0' means 'Off'. Available units: s(econds)(default), m(inutes), h(ours), or d(ays). Default value: 0. http://php.net/manual/en/install.fpm.configuration.php

slifin commented 9 years ago

Thank you