Skip to Content.
Sympa Menu

sm-commit - [SM-Commit] GIT changes to master grimoire by Vlad Glagolev (8dd7b828c2756c60e8349e0212f68c5d49a66691)

sm-commit AT lists.ibiblio.org

Subject: Source Mage code commit list

List archive

Chronological Thread  
  • From: Vlad Glagolev <scm AT sourcemage.org>
  • To: sm-commit AT lists.ibiblio.org
  • Subject: [SM-Commit] GIT changes to master grimoire by Vlad Glagolev (8dd7b828c2756c60e8349e0212f68c5d49a66691)
  • Date: Wed, 25 Feb 2009 05:59:43 -0600

GIT changes to master grimoire by Vlad Glagolev <stealth AT sourcemage.org>:

http/nginx/BUILD | 12 +++++++++---
http/nginx/DETAILS | 1 +
http/nginx/HISTORY | 5 +++++
http/nginx/INSTALL | 3 +++
4 files changed, 18 insertions(+), 3 deletions(-)

New commits:
commit 8dd7b828c2756c60e8349e0212f68c5d49a66691
Author: Vlad Glagolev <stealth AT sourcemage.org>
Commit: Vlad Glagolev <stealth AT sourcemage.org>

nginx: fixed temp dir path

diff --git a/http/nginx/BUILD b/http/nginx/BUILD
index 82981f2..c8dc35c 100755
--- a/http/nginx/BUILD
+++ b/http/nginx/BUILD
@@ -1,13 +1,19 @@
create_account nginx &&

+persistent_add TEMP_DIR &&
+local TEMP_DIR="$INSTALL_ROOT/var/spool/nginx" &&
+
./configure --prefix="$INSTALL_ROOT/etc/nginx" \
--conf-path="$INSTALL_ROOT/etc/nginx/nginx.conf" \
--sbin-path="$INSTALL_ROOT/usr/sbin/nginx" \
--pid-path="$INSTALL_ROOT/var/run/nginx.pid" \
--user=nginx \
--group=nginx \
- --http-log-path="$INSTALL_ROOT/var/log/nginx/access.log" \
- --error-log-path="$INSTALL_ROOT/var/log/nginx/error.log" \
- $OPTS &&
+--http-client-body-temp-path="$TEMP_DIR/client_body_temp" \
+ --http-proxy-temp-path="$TEMP_DIR/proxy_temp" \
+ --http-fastcgi-temp-path="$TEMP_DIR/fastcgi_temp" \
+ --http-log-path="$INSTALL_ROOT/var/log/nginx/access.log" \
+ --error-log-path="$INSTALL_ROOT/var/log/nginx/error.log" \
+ $OPTS &&

make
diff --git a/http/nginx/DETAILS b/http/nginx/DETAILS
index ede2756..7fc76f4 100755
--- a/http/nginx/DETAILS
+++ b/http/nginx/DETAILS
@@ -1,5 +1,6 @@
SPELL=nginx
VERSION=0.6.35
+ PATCHLEVEL=1
SOURCE=$SPELL-$VERSION.tar.gz
SOURCE_URL[0]=http://sysoev.ru/$SPELL/$SOURCE

SOURCE_HASH=sha512:b9008329fd7541ecb73935980ca2b57fe4c689a61e59be6967059aaaf15885d310439e96541c769d46ec4a327084400f9223e2b946001fb060587b863fbf1623
diff --git a/http/nginx/HISTORY b/http/nginx/HISTORY
index 0524794..021ba8c 100644
--- a/http/nginx/HISTORY
+++ b/http/nginx/HISTORY
@@ -1,2 +1,7 @@
2009-02-03 Vlad Glagolev <stealth AT sourcemage.org>
+ * DETAILS: PATCHLEVEL=1
+ * BUILD: fixed temp dir path
+ * INSTALL: added, for pre-installation of temp dir
+
+2009-02-03 Vlad Glagolev <stealth AT sourcemage.org>
* BUILD, DEPENDS, DETAILS, init.d/nginx: spell created
diff --git a/http/nginx/INSTALL b/http/nginx/INSTALL
new file mode 100755
index 0000000..591dcad
--- /dev/null
+++ b/http/nginx/INSTALL
@@ -0,0 +1,3 @@
+default_install &&
+
+install -vm 770 -d -o nginx -g nginx "$TEMP_DIR"



  • [SM-Commit] GIT changes to master grimoire by Vlad Glagolev (8dd7b828c2756c60e8349e0212f68c5d49a66691), Vlad Glagolev, 02/25/2009

Archive powered by MHonArc 2.6.24.

Top of Page