X-Original-To: alpine-aports@lists.alpinelinux.org Delivered-To: alpine-aports@mail.alpinelinux.org Received: from mail-vc0-f169.google.com (mail-vc0-f169.google.com [209.85.220.169]) (using TLSv1 with cipher ECDHE-RSA-RC4-SHA (128/128 bits)) (No client certificate requested) by mail.alpinelinux.org (Postfix) with ESMTPS id 0D206DC012A for ; Tue, 10 Mar 2015 23:21:58 +0000 (UTC) Received: by mail-vc0-f169.google.com with SMTP id im6so1808305vcb.0 for ; Tue, 10 Mar 2015 16:21:58 -0700 (PDT) DKIM-Signature: v=1; a=rsa-sha256; c=relaxed/relaxed; d=gmail.com; s=20120113; h=mime-version:sender:date:message-id:subject:from:to:content-type; bh=5x215d1tPnhH51fkJcOvNo++2Wouv8ajRM1/QfkjBAo=; b=npGalFR1fvLompFMsWYKXZr2DrntmJ/WIEJKPDb86qMzoNRw1whEPgzvznQZ8nfW/V tfTUM4TWbl65JDbMjCOkDDM/G833ToFLeRz6rL/xt6oxAEo/CqBHXoc3nbfLNlbKb+BD VGYzO/7mmbvfDmcQPatY0ZQwo9NCSPO72KfdwjmYD7+5wVU2WQJicsT0PPGKZWy6KGbj OyDqRLjmSlxfwOUHoRLSQVPaIkRLB4ZmU1VZFBZ3qegXZWunKNLRQLzExxMszu8zO9vV 0dyoNWNmsHsOIFiRb19nXlokilnjGGFj0omx6eW0d4FvIhqqqSMf2Y37bVjwDsrIiaK6 9GhA== X-Mailinglist: alpine-aports Precedence: list List-Id: Alpine Development List-Unsubscribe: List-Post: List-Help: List-Subscribe: MIME-Version: 1.0 X-Received: by 10.52.29.147 with SMTP id k19mr12222972vdh.56.1426029718149; Tue, 10 Mar 2015 16:21:58 -0700 (PDT) Sender: andy.shinn@gmail.com Received: by 10.52.12.98 with HTTP; Tue, 10 Mar 2015 16:21:58 -0700 (PDT) Date: Tue, 10 Mar 2015 18:21:58 -0500 X-Google-Sender-Auth: wmrZvOnVyu8r-B4XlRdMmkOK8pA Message-ID: Subject: [alpine-aports] [PATCH] main/nginx: add stub status module From: Andy Shinn To: alpine-aports@lists.alpinelinux.org Content-Type: text/plain; charset=UTF-8 I'm not sure if thus was explicitly left out for a reason. But I have a project where I would like to grab statistics from nginx. Let me know if we want to leave this out for some reason and maybe it would be better as a nginx-extra or nginx-full package. --- main/nginx/APKBUILD | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) diff --git a/main/nginx/APKBUILD b/main/nginx/APKBUILD index 5f4763d..e2a688b 100644 --- a/main/nginx/APKBUILD +++ b/main/nginx/APKBUILD @@ -5,7 +5,7 @@ pkgname=nginx pkgver=1.6.2 _nginxrtmpver=1.1.6 -pkgrel=1 +pkgrel=2 pkgdesc="lightweight HTTP and reverse proxy server" url="http://www.nginx.org" arch="all" @@ -52,6 +52,7 @@ build() { --with-pcre-jit \ --with-http_dav_module \ --with-http_ssl_module \ + --with-http_stub_status_module \ --with-http_gzip_static_module \ --with-http_spdy_module \ --with-mail \ -- 2.2.2 --- Unsubscribe: alpine-aports+unsubscribe@lists.alpinelinux.org Help: alpine-aports+help@lists.alpinelinux.org ---