Title: nginx example
Last modified: December 12, 2019

---

# nginx example

 *  Resolved [milesgeek](https://wordpress.org/support/users/milesgeek/)
 * (@milesgeek)
 * [6 years, 6 months ago](https://wordpress.org/support/topic/nginx-example/)
 * Do you have a sample config for loading the pre-compressed files in nginx we 
   can work from?

Viewing 1 replies (of 1 total)

 *  Plugin Author [Raul P.](https://wordpress.org/support/users/alignak/)
 * (@alignak)
 * [6 years, 6 months ago](https://wordpress.org/support/topic/nginx-example/#post-12234444)
 * As long as your nginx support gzip, you just need to add `gzip_static on;` to
   your server section, ex:
 *     ```
       server {
           gzip on;
           gzip_static on;    
           gzip_proxied  any;
           gzip_vary on;
           gzip_comp_level 6;
           gzip_buffers 16 8k;
           gzip_http_version 1.1;    
           ...
       }
       ```
   

Viewing 1 replies (of 1 total)

The topic ‘nginx example’ is closed to new replies.

 * ![](https://ps.w.org/fast-velocity-minify/assets/icon-128x128.jpg?rev=1440946)
 * [Fast Velocity Minify](https://wordpress.org/plugins/fast-velocity-minify/)
 * [Support Threads](https://wordpress.org/support/plugin/fast-velocity-minify/)
 * [Active Topics](https://wordpress.org/support/plugin/fast-velocity-minify/active/)
 * [Unresolved Topics](https://wordpress.org/support/plugin/fast-velocity-minify/unresolved/)
 * [Reviews](https://wordpress.org/support/plugin/fast-velocity-minify/reviews/)

 * 1 reply
 * 2 participants
 * Last reply from: [Raul P.](https://wordpress.org/support/users/alignak/)
 * Last activity: [6 years, 6 months ago](https://wordpress.org/support/topic/nginx-example/#post-12234444)
 * Status: resolved