Drupal 7 images problem
Posted by demon326 on October 27, 2012 at 8:38am
Okay, the problem is simple: images generated by drupal 7's image system in nodes won't show up and i'm getting pissed because it won't work, even with all the info here...
Setup:
Nginx(80)--->apache(8080)(php backend)
Image part in the vhost:
location @rewrite {
proxy_pass http://mydomain.tld:8080/index.php?q=$uri;
}
## Drupal 7 generated image handling, i.e., imagecache in core. See:
## https://drupal.org/node/371374.
location ~* /files/styles/ {
access_log off;
expires 30d;
try_files $uri @rewrite;
}Help needed with nginx boost/rewrite rules..
Posted by demon326 on August 7, 2012 at 9:36am
Hello all,
For the moment im using nginx as fronted for apache, but I'd like to get rid of the htaccess in drupal so apache doesn't use more resources then needed, but that means that i need to get boost and the rewrite rules in it, and thats the part when i got stuck.
Read morea tutorial on how to install nginx 1.*.* as reverse proxy for apache and drupal (include boost image cache and etc')?
Posted by yakovyarmo on June 5, 2011 at 5:08pm