On 5 October 2012 12:41, Christopher Zimmermann <madro...@gmerlin.de> wrote: > Hi, > > unless you are planning to move the CGI program to another machine, > unix domain sockets are a simple, reliable and secure option. > > Christopher
I'm running it on the same machine all the time so I made the change to unix sockets. This is what I did: edited rc.conf.local: fcgi_cgi_flags="-u www -U www -c /var/www -S -s /var/www/fcgi.socket -- /usr/local/bin/fcgi-cgi" (in rc.d dir) $ ./fcgi_cgi restart (ok) then changes to nginx.conf: fastcgi_pass unix:/fcgi.socket; and ./nginx reload (ok). Still giving the same error, HTTP Error 500. Did I miss something?