Quantcast
Channel: nginx, alias, php-fpm = File not Found - Server Fault
Browsing all 3 articles
Browse latest View live

Answer by Ben Walters for nginx, alias, php-fpm = File not Found

I found that moving my php matching block above my root location block worked just fine.location ~ \.php$ { include fastcgi.conf; fastcgi_intercept_errors on; fastcgi_pass 127.0.0.1:9000; fastcgi_index...

View Article



Answer by Martin for nginx, alias, php-fpm = File not Found

Fixed it. Turns out, you have to include the php bit under every location block.location /calender { alias /usr/share/davical/htdocs; location ~ \.php$ { fastcgi_split_path_info ^(.+?\.php)(/.*)?$;...

View Article

nginx, alias, php-fpm = File not Found

I'm trying to set up nginx with DAViCal.However, I'm getting a "File not Found" with a "FastCGI sent in stderr: "Primary script unknown" in the log.Looks like something is wrong with my aliasing but I...

View Article
Browsing all 3 articles
Browse latest View live




Latest Images