Skip to content

Instantly share code, notes, and snippets.

@degouville
Created August 22, 2016 20:00
Show Gist options
  • Select an option

  • Save degouville/ff1ba2deb42ebf036b2c619124b4d9a1 to your computer and use it in GitHub Desktop.

Select an option

Save degouville/ff1ba2deb42ebf036b2c619124b4d9a1 to your computer and use it in GitHub Desktop.
Nginx X WordPress Snippets
server {
listen 80;
index index.php;
server_name domain.tld;
root /var/www/wordpress;
location = /favicon.ico {
log_not_found off;
access_log off;
}
location = /robots.txt {
allow all;
log_not_found off;
access_log off;
}
location / {
try_files $uri $uri/ /index.php?$args;
}
location ~ \.php$ {
include snippets/fastcgi-php.conf;
fastcgi_pass unix:/run/php/php7.0-fpm.sock;
}
location ~* \.(js|css|png|jpg|jpeg|gif|ico)$ {
expires max;
log_not_found off;
}
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment