Custom Query (2297 matches)

Filters
 
Or
 
  
 
Columns

Show under each result:


Results (58 - 60 of 2297)

Ticket Resolution Summary Owner Reporter
#1354 wontfix add another conditional to nginx.spec.in to support fedora builds 3van@…
Description

use_systemd already gets defined for builds on Fedora, so the only other change is to add it to the if block for RHEL 7:

--- ./a/rpm/SPECS/nginx.spec.in
+++ ./b/rpm/SPECS/nginx.spec.in
@@ -25,7 +25,7 @@
 BuildRequires: openssl-devel >= 1.0.1
 %endif
 
-%if 0%{?rhel} == 7
+%if 0%{?rhel} == 7 || 0{?fedora} >= 18
 %define _group System Environment/Daemons
 %define epoch 1
 Epoch: %{epoch}

Without this, builds fail in a sandboxed environment due to the missing OpenSSL dependency.

#113 fixed Add apache ExpiresByType equivalent functionality somebody thermal7.myopenid.com
Description

Add apache ExpiresByType equivalent functionality. The closest thing in nginx at the moment is:

    # CSS and Javascript
    location ~* \.(?:css|js)$ {
      expires 1Y;
      access_log off;
      add_header Cache-Control "public";
    }

which is not ideal as the content type is a more reliable way to identify the type of a file. For example http://clientdependency.codeplex.com/ results in a URI of something like /DependcyHandler.axd?asfasdkfjashdfkashdfjkhasdk

I think this would best be done by something like

    # CSS and Javascript
    content_type text/css, text/javascript {
      expires 1Y;
      access_log off;
      add_header Cache-Control "public";
    }

or

    # CSS and Javascript
    for_header "content-type" > text/css, text/javascript {
      expires 1Y;
      access_log off;
      add_header Cache-Control "public";
    }
#2168 duplicate Add application/wasm -- Recently approved by IANA DesWurstes@…
Description

Also see #1606

Added recently: https://github.com/WebAssembly/spec/issues/573#issuecomment-824715263

Batch Modify
Note: See TracBatchModify for help on using batch modify.
Note: See TracQuery for help on using queries.