Last active
November 23, 2023 23:25
Plesk 11.5 nginx configuration settings for WordPress
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
# 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; | |
gzip_vary on; | |
# end gzip configuration | |
location ~* ^/(.*\.(js|css|png|jpg|jpeg|gif|ico))$ { | |
expires 2w; | |
log_not_found off; | |
} |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
Source: https://www.websavers.org/how-to-speed-up-wordpress/
Exclude wp-admin folder:
http://forum.parallels.com/showthread.php?287417-Plesk-11-5-Linux-PHP-FPM-and-NGINX-Index-html-error&p=695490&viewfull=1#post695490