moepstar
Member
Posted 2 years ago #
Hi,
i'm just asking if there's any kind of progress on NGINX support for W3 Total Cache.
From what i've gathered there are plans to integrate it in future versions, i'm just asking when it's going to be ready or at least available for testing.
best regards
http://wordpress.org/extend/plugins/w3-total-cache/
I get reasonable results using W3 Total Cache and NGINX with 2 caveats: JS and CSS minification do not work and to enjoy gzip compression I changed these settings in my php.ini file:
zlib.output_compression = On
zlib.output_compression_level = 6
I'm caching to APC and it works reasonably well.
moepstar
Member
Posted 2 years ago #
Well, this is all nice but i'd like to see the whole functionality supported, if possible.
It'd be interesting to know if the minification problems stem only from rewrite rules not working.
paul1999
Member
Posted 2 years ago #
Yes, the problem is just rewriting. I use this rule in my nginx conf. It may need to be tweaked for your site.
rewrite ^/wp-content/w3tc/min/([a-z0-9\-_]+)\.(include(-footer)?(-nb)?)\.(css|js)$ /wp-content/w3tc/min/index.php?gg=$1&g=$2&t=$5 last;
moepstar
Member
Posted 2 years ago #
Thanks for that - i however suppose that you're NOT using disk-based caching as that would need the other .htaccess rules to be adopted too?
paul1999
Member
Posted 2 years ago #
You are right. I am serving the CSS through a mirror (pull) CDN disk caching is not needed.
Porting .htaccess to nginx conf files is not hard. The biggest difference is that mod_rewrite allows multiple condition while nginx if statements only allow one condition. It just requires a different approach (there are tutorials on simulating multiple conditions using strings ... but try to avoid these as they are not needed.)
Native support for nginx is coming in v1.0.
moepstar
Member
Posted 2 years ago #
Which in turn is coming when? :)
There are so many amazing features scheduled, it's hard for me to promise. It will all be wrapped up this year though that much is certain.
teknoledge
Member
Posted 1 year ago #
Any update on this? :)
Nginx is becoming extremely popular webserver (I moved completely to nginx on all my VPS's and servers) so added support for it out of the box would be extremely useful.
fikrionline
Member
Posted 1 year ago #
@Frederick Townes: I'm a new beginner in WordPress. Can you tell me how to configure it in Nginx?
Notes: W3 Total Cache is one of the big plugin in wordpress :)