drupal-with-nginx
drupal-with-nginx copied to clipboard
Running Drupal using nginx: an idiosyncratically crafted bleeding edge configuration.
``` location / { ### ### allow CiviCRM php files (like open.php) ### location ~* ^/sites/.*/(?:modules)/(civicrm)/.*\.php$ { access_log off; try_files $uri =404; fastcgi_pass phpcgi; } } ## Protect private CiviCRM...
Seems at least with the version of ubuntu (14.04) and nginx (1.6.2) that the solution for escaped URIs doesn't work -- it escapes the entire URI including path separators, leading...
- Ubuntu 12.04 LTS - Nginx 1.7.12 (upgraded today from Ubuntu mainline/dev PPA) - OpenSSL 1.0.1 (build from 19/03/15 - upgraded today) Have restarted Dovecot/Postfix/PHP5-FPM/Monit and of course Nginx. Spdycheck.org...
Dear perusio, using your full setup with a few modifications, i get a super lightning fast site, but in some parts of it i receive 502 errors (which i don't...
In the file apps/drupal.conf there is a section called Security measures The location defined for applying theses Security measures is @drupal, see above ``` location @drupal { ## Include the...
https://groups.drupal.org/node/229898#comment-1091368
Trying to view diffs for the hacked module (https://www.drupal.org/project/hacked) returns 404, the fix must come before the config sections that try to determine static content or information disclosure. **apps/drupal/drupal.conf** ```...
this location filters out correct request like /user/autocomplete/a.sh compare these urls http://drupalspb.org:8080/user/autocomplete/a.sh http://drupal.org/user/autocomplete/a.sh btw. another case is /user/autocomplete/a.php
updating original
I got always high loadbalance cpu bound. To decrease the balance, i am thinking to distribute the load. Can i separate drupal's backend from fronted in nginx? Or can i...