network/nginx: Updated for version 1.6.2.
Signed-off-by: Willy Sudiarto Raharjo <willysr@slackbuilds.org>
This commit is contained in:
parent
f039bd97aa
commit
8f38d49c91
|
@ -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:
|
||||
|
||||
|
|
|
@ -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
|
||||
|
|
|
@ -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=""
|
||||
|
|
Loading…
Reference in New Issue