Updated Setting up Drupal 7 (markdown)

Theodotos Andreou 2018-01-14 23:21:00 +02:00
parent 4f4a60f9fc
commit 473076507c

@ -87,6 +87,15 @@ server {
deny all; deny all;
} }
location ~ \.php$ {
try_files $uri =404;
fastcgi_index index.php;
fastcgi_param SCRIPT_FILENAME $document_root$fastcgi_script_name;
fastcgi_param HTTP_PROXY "";
include /etc/nginx/fastcgi_params;
fastcgi_pass unix:/var/run/php/php7.0-fpm.sock;
}
location ~ \..*/.*\.php { location ~ \..*/.*\.php {
return 403; return 403;
} }
@ -103,13 +112,34 @@ server {
rewrite ^/(.*)$ /index.php?q=$1; rewrite ^/(.*)$ /index.php?q=$1;
} }
location ~ \.php$ { location ~ ^/sites/.*/files/imagecache/ {
include fastcgi_params; try_files $uri @rewrite;
fastcgi_param SCRIPT_FILENAME $document_root$fastcgi_script_name;
fastcgi_intercept_errors on;
fastcgi_pass unix:/var/run/php/php7.0-fpm.sock;
} }
location ~ ^/sites/.*/files/styles/ {
try_files $uri @rewrite;
}
location ~* \.(js|css|png|jpg|jpeg|gif|ico)$ {
expires max;
log_not_found off;
}
location ~ /\. {
deny all;
access_log off;
log_not_found off;
}
location ~ ~$ {
access_log off;
log_not_found off;
deny all;
}
location ~ ^/sites/.*/files/(private|temp|tmp|backup_migrate) {
deny all;
}
} }
``` ```