Skip to content

Instantly share code, notes, and snippets.

Avatar

Alberto Fernandez AlbertoFdzM

View GitHub Profile
@AlbertoFdzM
AlbertoFdzM / CHANGELOG.md
Last active July 12, 2017 09:41
Documentation files for github projects
View CHANGELOG.md
View README.md

Just my Atom Settings backedup by Atom-Sync-Settings Package

@AlbertoFdzM
AlbertoFdzM / nginx.conf
Last active August 10, 2021 10:36 — forked from rutger1140/gist:8548548
WordPress+Plesk+Nginx Config
View nginx.conf
# Source: https://www.websavers.org/how-to-speed-up-wordpress/
rewrite !\.(js|ico|gif|jpg|png|css|pdf|mov|mp3|eot|svg|ttf|woff|otf|txt|swf)$ /index.php break;
rewrite /wp-admin/$ /wp-admin/index.php break;
rewrite /$ /index.php break;
# enable gzip compression
gzip on;
gzip_min_length 1100;
gzip_buffers 4 32k;
gzip_types text/plain application/x-javascript text/xml text/css;