Hi! Can you post nginx rewrite rules for webacula?
I not tested:
http://stackoverflow.com/questions/376732/zend-framework-on-nginx
RewriteEngine On RewriteCond %{REQUEST_FILENAME} -s [OR] RewriteCond %{REQUEST_FILENAME} -l [OR] RewriteCond %{REQUEST_FILENAME} -d RewriteRule ^.*$ - [NC,L] RewriteRule ^.*$ /index.php [NC,L]
---------------------------------
error_page 404 /index.php;
location / { if (-f $request_filename) { root /var/www; } }
location ~ .php$ { fastcgi_pass unix:/tmp/php.sock; fastcgi_index index.php;
fastcgi_param SCRIPT_FILENAME /var/www/index.php; include /etc/nginx/fastcgi_params; }
Log in to post a comment.
I not tested:
http://stackoverflow.com/questions/376732/zend-framework-on-nginx
RewriteEngine On
RewriteCond %{REQUEST_FILENAME} -s [OR]
RewriteCond %{REQUEST_FILENAME} -l [OR]
RewriteCond %{REQUEST_FILENAME} -d
RewriteRule ^.*$ - [NC,L]
RewriteRule ^.*$ /index.php [NC,L]
---------------------------------
error_page 404 /index.php;
location / {
if (-f $request_filename) {
root /var/www;
}
}
location ~ .php$ {
fastcgi_pass unix:/tmp/php.sock;
fastcgi_index index.php;
fastcgi_param SCRIPT_FILENAME /var/www/index.php;
include /etc/nginx/fastcgi_params;
}