Skip to content

Instantly share code, notes, and snippets.

@meramo
meramo / nginx_host.conf
Last active January 27, 2020 15:19
Drupal 8 Nginx config
server {
server_name example.com;
root /var/www/example;
index index.php;
error_log /var/www/log/example_error.log;
location ~ \..*/.*\.php$ {
return 403;