Apache lets you set php.ini values for virtual hosts with the php_value directive.
Does nginx have something similar? Is there another way to set the include_path on a per-site basis?
|
|
|
Now, it is possible to do this way:
More information here: http://bugs.php.net/bug.php?id=51595 Using this technique to set php values, I have successfully set different "error_log" locations for multiple virtual hosts. Thanks, PHP and NginX guys! |
|||||
|
|
|
Sean, php_value and php_admin_value will not work with nginx. This is a limitation of php-cgi and not nginx. You can work around this by starting multiple instances of PHP and passing in a custom php.ini like so:
You can also set the include path explicitly in your PHP code like so:
|
|||||
|