Hey,
I recently switched to use nginx on my VPS over at Dreamhost (everything is so much faster!).
I've manage to configure everything except how to use custom php.ini files
In apache i could call this in my .htacces
[code]
Options +ExecCGI
AddHandler php-cgi .php
Action php-cgi /cgi-bin/php-wrapper.fcgi
[/code]
and the php-wrapper.fcgi executed php5.cgi with my custom ini
[code]
#!/bin/sh
exec /dh/cgi-system/php5.cgi $*
[/code]
Is this possible to make in nginx?
Thanks,
Simon.