|
|
|
# --- SDE-COPYRIGHT-NOTE-BEGIN ---
|
|
|
|
# This copyright note is auto-generated by ./scripts/Create-CopyPatch.
|
|
|
|
#
|
|
|
|
# Filename: package/.../nginx/nginx.conf
|
|
|
|
# Copyright (C) 2009 - 2011 The OpenSDE Project
|
|
|
|
# Copyright (C) 2006 The T2 SDE Project
|
|
|
|
#
|
|
|
|
# More information can be found in the files COPYING and README.
|
|
|
|
#
|
|
|
|
# This program is free software; you can redistribute it and/or modify
|
|
|
|
# it under the terms of the GNU General Public License as published by
|
|
|
|
# the Free Software Foundation; version 2 of the License. A copy of the
|
|
|
|
# GNU General Public License can be found in the file COPYING.
|
|
|
|
# --- SDE-COPYRIGHT-NOTE-END ---
|
|
|
|
|
|
|
|
if [ $prefix_auto = 1 ]; then
|
|
|
|
prefix="opt/nginx"
|
|
|
|
set_confopt
|
|
|
|
fi
|
|
|
|
|
|
|
|
cleanconfopt=0
|
|
|
|
confopt="--prefix=/$prefix"
|
|
|
|
|
|
|
|
[[ "$sysconfdir" = */$pkg ]] || sysconfdir=$sysconfdir/$pkg
|
|
|
|
|
|
|
|
var_append confopt ' ' "--conf-path=$sysconfdir/nginx.conf"
|
|
|
|
# set path to nginx.pid file
|
|
|
|
var_append confopt ' ' "--pid-path=$localstatedir/run/nginx.pid"
|
|
|
|
# set path to nginx.lock file
|
|
|
|
var_append confopt ' ' "--lock-path=$localstatedir/lock/nginx.lock"
|
|
|
|
|
|
|
|
# set temporary paths and files
|
|
|
|
for x in proxy fastcgi uwsgi client-body; do
|
|
|
|
var_append confopt ' ' "--http-$x-temp-path=$localstatedir/temp/${x//-/_}_temp"
|
|
|
|
done
|
|
|
|
|
|
|
|
# log directories
|
|
|
|
logdir="$localstatedir/log/$pkg"
|
|
|
|
var_append confopt ' ' "--http-log-path=$logdir/access.log"
|
|
|
|
var_append confopt ' ' "--error-log-path=$logdir/error.log"
|
|
|
|
|
|
|
|
# --with- with dependency
|
|
|
|
for x in openssl:ssl zlib:gzip_static; do
|
|
|
|
if pkginstalled "${x%:*}"; then
|
|
|
|
var_append confopt ' ' "--with-http_${x#*:}_module"
|
|
|
|
fi
|
|
|
|
done
|
|
|
|
|
|
|
|
# --without- because of dependency
|
|
|
|
for x in pcre:http_rewrite_module openssl:http-cache uwsgi:http_uwsgi_module; do
|
|
|
|
if ! pkginstalled "${x%:*}"; then
|
|
|
|
var_append confopt ' ' "--without-${x#*:}"
|
|
|
|
fi
|
|
|
|
done
|
|
|
|
|
|
|
|
# --with- without dependency
|
|
|
|
for x in stub_status flv realip; do
|
|
|
|
var_append confopt ' ' "--with-http_${x}_module"
|
|
|
|
done
|
|
|
|
|
|
|
|
# image_filter
|
|
|
|
has_all=yes
|
|
|
|
for x in libgd libjpeg libpng; do
|
|
|
|
if ! pkginstalled "$x"; then
|
|
|
|
has_all=no
|
|
|
|
break
|
|
|
|
fi
|
|
|
|
done
|
|
|
|
if [ "$has_all" = "yes" ]; then
|
|
|
|
var_append confopt ' ' "--with-http_image_filter_module"
|
|
|
|
fi
|
|
|
|
unset has_all
|
|
|
|
|
|
|
|
if atstage cross; then
|
|
|
|
var_append configprefix ' ' 'cross_compiling=yes'
|
|
|
|
|
|
|
|
for x in int long long_long char_p:void_p int:sig_atomic_t int:size_t int:off_t int:time_t; do
|
|
|
|
y=$(eval echo "\$arch_sizeof_${x%:*}")
|
|
|
|
var_append configprefix ' ' "ngx_cache_sizeof_${x#*:}=$y"
|
|
|
|
done
|
|
|
|
fi
|
|
|
|
|
|
|
|
var_append CC_WRAPPER_REMOVE " " "-Werror"
|
|
|
|
|
|
|
|
#
|
|
|
|
# 3rd party addon modules
|
|
|
|
#
|
|
|
|
|
|
|
|
# generic function to add a 3rd party addon module
|
|
|
|
# function parameters:
|
|
|
|
# $1: pattern of the modules source file name
|
|
|
|
#
|
|
|
|
pkg_nginx_add_module() {
|
|
|
|
mkdir -p $builddir/addon-module/$1
|
|
|
|
tar -v $taropt $( match_source_file -p $1 nginx ) --strip-components=1 -C $builddir/addon-module/$1
|
|
|
|
var_append confopt ' ' "--add-module=../addon-module/$1"
|
|
|
|
}
|
|
|
|
|
|
|
|
# rrd graph module
|
|
|
|
if [ "$SDECFG_PKG_NGINX_ADDON_MOD_RRDGRAPH" == 1 ] ; then
|
|
|
|
pkgprefix -t rrdtool
|
|
|
|
hook_add preconf 5 "pkg_nginx_add_module mod_rrd_graph"
|
|
|
|
fi
|
|
|
|
|
|
|
|
if [ "$SDECFG_PKG_NGINX_ADDON_MOD_UPLOAD" == 1 ] ; then
|
|
|
|
hook_add preconf 5 "pkg_nginx_add_module nginx_upload_module"
|
|
|
|
fi
|