diff options
author | Parabola <dev@list.parabolagnulinux.org> | 2011-04-05 14:26:38 +0000 |
---|---|---|
committer | Parabola <dev@list.parabolagnulinux.org> | 2011-04-05 14:26:38 +0000 |
commit | 415856bdd4f48ab4f2732996f0bae58595092bbe (patch) | |
tree | ede2018b591f6dfb477fe9341ba17b9bc000fab9 /community/nginx |
Tue Apr 5 14:26:38 UTC 2011
Diffstat (limited to 'community/nginx')
-rw-r--r-- | community/nginx/ChangeLog | 7 | ||||
-rw-r--r-- | community/nginx/PKGBUILD | 88 | ||||
-rw-r--r-- | community/nginx/nginx | 69 |
3 files changed, 164 insertions, 0 deletions
diff --git a/community/nginx/ChangeLog b/community/nginx/ChangeLog new file mode 100644 index 000000000..fb28b1717 --- /dev/null +++ b/community/nginx/ChangeLog @@ -0,0 +1,7 @@ +2009-05-26 sergej <pupykin.s+arch@gmail.com> +* etc/conf.d params added + +2007-06-29 tardo <tardo@nagi-fanboi.net> +* Built for x86_64 +* Clearly the ugliest pkgbuild I've seen but the author deserves + kudos diff --git a/community/nginx/PKGBUILD b/community/nginx/PKGBUILD new file mode 100644 index 000000000..81e4dffd8 --- /dev/null +++ b/community/nginx/PKGBUILD @@ -0,0 +1,88 @@ +# $Id: PKGBUILD 44016 2011-04-01 16:48:13Z spupykin $ +# Maintainer: Sergej Pupykin <pupykin.s+arch@gmail.com> +# Contributor: Miroslaw Szot <mss@czlug.icis.pcz.pl> + +_doc_root=/srv/http/nginx +_server_root=/etc/nginx +_conf_path=${_server_root}/conf +_tmp_path=/var/spool/nginx +_log_path=/var/log/nginx +_user=http +_group=http + +pkgname=nginx +pkgver=0.8.54 +pkgrel=3 +pkgdesc="lightweight HTTP server and IMAP/POP3 proxy server" +arch=('i686' 'x86_64') +depends=('pcre' 'zlib' 'openssl') +url="http://nginx.net/" +license=('custom') +backup=("etc/nginx/conf/nginx.conf" + "etc/nginx/conf/koi-win" + "etc/nginx/conf/koi-utf" + "etc/nginx/conf/win-utf" + "etc/nginx/conf/mime.types" + "etc/nginx/conf/fastcgi_params" + "etc/logrotate.d/nginx") +source=(http://sysoev.ru/nginx/nginx-${pkgver}.tar.gz + nginx) +md5sums=('44df4eb6a22d725021288c570789046f' + '837b010afcbdfe82d8e65ef00c4e14ba') + +build() { + local _src_dir=$srcdir/nginx-${pkgver} + local _build_dir=$_src_dir/objs + + cd $_src_dir + ./configure \ + --prefix=${_server_root} \ + --sbin-path=/usr/sbin/nginx \ + --pid-path=/var/run/nginx.pid \ + --lock-path=/var/lock/nginx.lock \ + --http-client-body-temp-path=${_tmp_path}/client_body_temp \ + --http-proxy-temp-path=${_tmp_path}/proxy_temp \ + --http-fastcgi-temp-path=${_tmp_path}/fastcgi_temp \ + --http-log-path=${_log_path}/access.log \ + --error-log-path=${_log_path}/error.log \ + --user=${_user} --group=${_group} \ + --with-imap --with-imap_ssl_module --with-http_ssl_module \ + --with-http_stub_status_module \ + --with-http_dav_module \ + --with-http_gzip_static_module \ + --with-ipv6 + + make + make DESTDIR=$pkgdir install + + install -d $pkgdir/etc/logrotate.d/ + cat <<EOF > $pkgdir/etc/logrotate.d/nginx + $_log_path/*log { + create 640 http log + compress + postrotate + /bin/kill -USR1 \`cat /var/run/nginx.pid 2>/dev/null\` 2> /dev/null || true + endscript + } +EOF + + sed -i -e "s/\<user\s\+\w\+;/user $_user;/g" $pkgdir/$_conf_path/nginx.conf + + install -d $pkgdir/$_tmp_path + + # move default document root outside server root + install -d $pkgdir/$_doc_root + mv $pkgdir/$_server_root/html/* $pkgdir/$_doc_root/ + rm -rf $pkgdir/$_server_root/html + rm -f $pkgdir/$_doc_root/index.html + + # let's create links for relative paths in config file + ln -s $_log_path $pkgdir/$_server_root/logs + ln -s $_doc_root $pkgdir/$_server_root/html + + install -D -m755 $srcdir/nginx $pkgdir/etc/rc.d/nginx + install -D -m644 LICENSE $pkgdir/usr/share/licenses/nginx/LICENSE + mkdir -p $pkgdir/etc/conf.d + echo "NGINX_CONFIG=/etc/nginx/conf/nginx.conf" >$pkgdir/etc/conf.d/nginx + rm -rf $pkgdir/var/run +} diff --git a/community/nginx/nginx b/community/nginx/nginx new file mode 100644 index 000000000..2d5a02a47 --- /dev/null +++ b/community/nginx/nginx @@ -0,0 +1,69 @@ +#!/bin/bash + +# general config + +NGINX_CONFIG="/etc/nginx/conf/nginx.conf" + +. /etc/conf.d/nginx +. /etc/rc.conf +. /etc/rc.d/functions + +function check_config { + stat_busy "Checking configuration" + /usr/sbin/nginx -t -q -c "$NGINX_CONFIG" + if [ $? -ne 0 ]; then + stat_die + else + stat_done + fi +} + +case "$1" in + start) + check_config + $0 careless_start + ;; + careless_start) + stat_busy "Starting Nginx" + if [ -s /var/run/nginx.pid ]; then + stat_fail + # probably ;) + stat_busy "Nginx is already running" + stat_die + fi + /usr/sbin/nginx -c "$NGINX_CONFIG" &>/dev/null + if [ $? -ne 0 ]; then + stat_fail + else + add_daemon nginx + stat_done + fi + ;; + stop) + stat_busy "Stopping Nginx" + kill -QUIT `cat /var/run/nginx.pid` &>/dev/null + if [ $? -ne 0 ]; then + stat_fail + else + rm_daemon nginx + stat_done + fi + ;; + restart) + check_config + $0 stop + sleep 1 + $0 careless_start + ;; + reload) + check_config + if [ -s /var/run/nginx.pid ]; then + status "Reloading Nginx Configuration" kill -HUP `cat /var/run/nginx.pid` + fi + ;; + check) + check_config + ;; + *) + echo "usage: $0 {start|stop|restart|reload|check|careless_start}" +esac |