Skip to content

Instantly share code, notes, and snippets.

@KalleVuorjoki
KalleVuorjoki / drupal.conf
Created April 29, 2019 05:32
Drupal 8 Nginx Config
server {
listen 80; # redundant in new nginx versions
server_name yourserver.com www.yourserver.com;
root /usr/share/nginx/www/drupal;
access_log off;
fastcgi_param SCRIPT_NAME $fastcgi_script_name;
location ~ \..*/.*\.php$ {
return 403;