diff options
author | Robert Nagy <robert@cvs.openbsd.org> | 2012-07-07 16:01:49 +0000 |
---|---|---|
committer | Robert Nagy <robert@cvs.openbsd.org> | 2012-07-07 16:01:49 +0000 |
commit | e1ed4ee6ef44c1dfb042327336a494dbbc9acc8b (patch) | |
tree | 803018c9917f41405cba7cead6b57495df82cc4e /usr.sbin/nginx/Makefile.bsd-wrapper | |
parent | 69f390c8fc881100a77e71328187534dc813f397 (diff) |
update to 1.2.2 and start using /var/www/cache instead of /var/www/tmp
Diffstat (limited to 'usr.sbin/nginx/Makefile.bsd-wrapper')
-rw-r--r-- | usr.sbin/nginx/Makefile.bsd-wrapper | 12 |
1 files changed, 6 insertions, 6 deletions
diff --git a/usr.sbin/nginx/Makefile.bsd-wrapper b/usr.sbin/nginx/Makefile.bsd-wrapper index 8c740c62560..60c9de7ff82 100644 --- a/usr.sbin/nginx/Makefile.bsd-wrapper +++ b/usr.sbin/nginx/Makefile.bsd-wrapper @@ -1,5 +1,5 @@ # Build wrapper for Nginx -# $OpenBSD: Makefile.bsd-wrapper,v 1.6 2012/06/26 10:03:41 robert Exp $ +# $OpenBSD: Makefile.bsd-wrapper,v 1.7 2012/07/07 16:01:48 robert Exp $ LNDIR= /usr/bin/lndir @@ -16,11 +16,11 @@ CONFIGURE_ARGS= --prefix=/var/www \ --lock-path=/var/run/nginx.lock \ --http-log-path=logs/access.log \ --error-log-path=logs/error.log \ - --http-client-body-temp-path=/var/www/tmp/client_body_temp \ - --http-proxy-temp-path=/var/www/tmp/proxy_temp \ - --http-fastcgi-temp-path=/var/www/tmp/fastcgi_temp \ - --http-scgi-temp-path=/var/www/tmp/scgi_temp \ - --http-uwsgi-temp-path=/var/www/tmp/uwsgi_temp \ + --http-client-body-temp-path=/var/www/cache/client_body_temp \ + --http-proxy-temp-path=/var/www/cache/proxy_temp \ + --http-fastcgi-temp-path=/var/www/cache/fastcgi_temp \ + --http-scgi-temp-path=/var/www/cache/scgi_temp \ + --http-uwsgi-temp-path=/var/www/cache/uwsgi_temp \ --user=www \ --group=www \ --with-http_gzip_static_module \ |