Parece que tive dificuldade em entender que a diretiva try_file permitirá que outros blocos de locais sejam acessados. Fiquei pensando que uma vez que a solicitação corresponde a um local, esse é o único bloco de localização a ser processado.
server {
server_name contentlib.dev;
access_log logs/contentlibrary_access.log;
root /Users/acasanova/projects/mednet/contentlibrary_js;
#default_type text/html;
index index.php index.html index.htm;
location /app{
try_files $uri $uri/ /index.php /index.php$uri =404;
root /Users/acasanova/projects/mednet/contentlibrary_js/app;
}
location ~* \.(jpg|jpeg|gif|png|html|css|zip|tgz|gz|rar|doc|xls|pdf|ppt|tar|wav|bmp|rtf|swf|flv|txt|xml|docx|xlsx|js)$ {
try_files $uri $uri/ /index.php$uri =404;
access_log off;
}
location /pagecreator{
try_files $uri /index.php index.php$uri =404;
root /Users/acasanova/projects/mednet/contentlibrary_js/pagecreator;
}
location ~ [^/]\.php(/|$) { #GC
fastcgi_split_path_info ^(.+\.php)(/.+)$;
fastcgi_pass unix:/php-fpm.sock;
fastcgi_index index.php;
fastcgi_param SCRIPT_FILENAME $document_root$fastcgi_script_name;
include fastcgi_params;
}
location ~ /\.ht {
deny all;
}
}