Hello
I'm experiencing some similar problems with some 404 errors for index.php file, one js and one image file... using joomla, but the website is working and the pages are compiled. I see this errors in the firebug.
I use Ispconfig.
Really not understand.
This is my configuration:
$document_root /var/www/mywebsite.com/web/
index index.php index.html index.htm default.html default.htm;
# deny running scripts inside writable directories
location ~* /(images|cache|media|logs|tmp)/.*\.(php|pl|py|jsp|asp|sh|cgi)$ {
return 403;
error_page 403 /403_error.html;
}
location / {
try_files $uri $uri/ /index.php?q=$request_uri;
}
location ~ .*.php$ {
include /etc/nginx/fastcgi_params;
fastcgi_pass 127.0.0.1:8998;
fastcgi_index index.php;
fastcgi_param SCRIPT_FILENAME $document_root$fastcgi_script_name;
}
# caching of files
location ~* \.(ico|pdf|flv)$ {
expires 1y;
}
location ~* \.(js|css|png|jpg|jpeg|gif|swf|xml|txt|otf|woff)$ {
expires 30d;
}
I'm experiencing some similar problems with some 404 errors for index.php file, one js and one image file... using joomla, but the website is working and the pages are compiled. I see this errors in the firebug.
I use Ispconfig.
Really not understand.
This is my configuration:
$document_root /var/www/mywebsite.com/web/
index index.php index.html index.htm default.html default.htm;
# deny running scripts inside writable directories
location ~* /(images|cache|media|logs|tmp)/.*\.(php|pl|py|jsp|asp|sh|cgi)$ {
return 403;
error_page 403 /403_error.html;
}
location / {
try_files $uri $uri/ /index.php?q=$request_uri;
}
location ~ .*.php$ {
include /etc/nginx/fastcgi_params;
fastcgi_pass 127.0.0.1:8998;
fastcgi_index index.php;
fastcgi_param SCRIPT_FILENAME $document_root$fastcgi_script_name;
}
# caching of files
location ~* \.(ico|pdf|flv)$ {
expires 1y;
}
location ~* \.(js|css|png|jpg|jpeg|gif|swf|xml|txt|otf|woff)$ {
expires 30d;
}