diff options
Diffstat (limited to 'network/nginx')
-rw-r--r-- | network/nginx/README | 5 | ||||
-rw-r--r-- | network/nginx/nginx.SlackBuild | 10 | ||||
-rw-r--r-- | network/nginx/nginx.info | 6 |
3 files changed, 5 insertions, 16 deletions
diff --git a/network/nginx/README b/network/nginx/README index 662ff95511..f101fa857e 100644 --- a/network/nginx/README +++ b/network/nginx/README @@ -9,11 +9,6 @@ specify alternate values on the command line if desired; for example: Regardless of which user and group you decide to use, you will need to make sure they exist on both the build system and the target system. -Beginning with version 1.4, the SPDY protocol is supported, however it is not -build by default. If you wish to enable it you need to change USE_SPDY variable: - - USE_SPDY=yes ./nginx.SlackBuild - Geoip support is now available as an option using the GeopIP package. If you wish to enable GeoIP the pass USE_GEOIP variable to the slackbuild: diff --git a/network/nginx/nginx.SlackBuild b/network/nginx/nginx.SlackBuild index 0b12bd185f..b3a644fcfe 100644 --- a/network/nginx/nginx.SlackBuild +++ b/network/nginx/nginx.SlackBuild @@ -28,7 +28,7 @@ # Special thanks to Thomas Morper for some configuration adjustments tips PRGNAM=nginx -VERSION=${VERSION:-1.6.1} +VERSION=${VERSION:-1.6.2} BUILD=${BUILD:-1} TAG=${TAG:-_SBo} @@ -79,12 +79,6 @@ sed -i \ -e '/root[ ]*html/s|html;|/var/www/&|' \ -e '$s|.*| include /etc/nginx/conf.d/\*.conf;\n&|' conf/$PRGNAM.conf -if [ "${USE_SPDY:-no}" == "yes" ]; then - SPDY_MOD="--with-http_spdy_module" -else - SPDY_MOD="" -fi - if [ "${USE_GEOIP:-no}" == "yes" ]; then GEOIP_MOD="--with-http_geoip_module" else @@ -130,7 +124,7 @@ CXXFLAGS="$SLKCFLAGS" \ --with-http_auth_request_module \ --with-mail \ --with-mail_ssl_module \ - $SPDY_MOD \ + --with-http_spdy_module \ $GEOIP_MOD make diff --git a/network/nginx/nginx.info b/network/nginx/nginx.info index 4b3afeb1a9..283f1160bb 100644 --- a/network/nginx/nginx.info +++ b/network/nginx/nginx.info @@ -1,8 +1,8 @@ PRGNAM="nginx" -VERSION="1.6.1" +VERSION="1.6.2" HOMEPAGE="http://nginx.org/" -DOWNLOAD="http://nginx.org/download/nginx-1.6.1.tar.gz" -MD5SUM="45e5a11f48b001644676f7767980a2bf" +DOWNLOAD="http://nginx.org/download/nginx-1.6.2.tar.gz" +MD5SUM="d1b55031ae6e4bce37f8776b94d8b930" DOWNLOAD_x86_64="" MD5SUM_x86_64="" REQUIRES="" |