|
The contents of posts here belong to the author posting them.
|
Posted by Anonymous on Thu 26th Jan 07:19 View followups from rwky | download | new postserver {
listen 80;
root /var/www/drupal;
index index.php;
expires max;
location ~ /\. {
deny all;
}
location ~ \.php$ {
if (!-f $request_filename)
{
return 404;
}
expires 0;
fastcgi_pass 127.0.0.1:8000;
include fastcgi_config;
include fastcgi_params;
}
location /
{
try_files $uri $uri/ /index.php?$args;
}
}
Submit a correction or amendment below (click here to make a fresh posting) After submitting an amendment, you'll be able to view the differences between the old and new posts easily.
|