Skip to content

Instantly share code, notes, and snippets.

@thynan
thynan / drupal-nginx-snippet
Last active September 6, 2016 09:10
Drupal 7 + 8 NGINX Snippet for ISPConfig
location / {
## Trying to access private files directly returns a 404.
location ^~ /sites/default/files/private/ {
internal;
}
## Drupal 7 generated image handling, i.e., imagecache in core. See:
## http://drupal.org/node/371374.
location ~* /files/styles/ {