diff options
| author | Max Howell | 2013-04-12 17:14:18 -0400 |
|---|---|---|
| committer | Max Howell | 2013-04-12 17:14:18 -0400 |
| commit | 4c9fa931d76b8b335c41abd9de2d9dab334bc08e (patch) | |
| tree | 18bd332fce2a77895a0f352c8b9145a8a2e96e67 /Library/Formula | |
| parent | 7b030e8516a4fecd2c1dc39df7f2b9c87e38fdf0 (diff) | |
| download | homebrew-4c9fa931d76b8b335c41abd9de2d9dab334bc08e.tar.bz2 | |
nginx: Compile static gzip module
Every example of nginx I have seen out there has this compiled in by default.
Diffstat (limited to 'Library/Formula')
| -rw-r--r-- | Library/Formula/nginx.rb | 3 |
1 files changed, 2 insertions, 1 deletions
diff --git a/Library/Formula/nginx.rb b/Library/Formula/nginx.rb index 3e308bfd4..f8a59dde8 100644 --- a/Library/Formula/nginx.rb +++ b/Library/Formula/nginx.rb @@ -56,7 +56,8 @@ class Nginx < Formula "--http-fastcgi-temp-path=#{var}/run/nginx/fastcgi_temp", "--http-uwsgi-temp-path=#{var}/run/nginx/uwsgi_temp", "--http-scgi-temp-path=#{var}/run/nginx/scgi_temp", - "--http-log-path=#{var}/log/nginx" + "--http-log-path=#{var}/log/nginx", + "--with-http_gzip_static_module" ] args << passenger_config_args if build.include? 'with-passenger' |
