Custom Query (2297 matches)

Filters
 
Or
 
  
 
Columns

Show under each result:


Results (61 - 63 of 2297)

Ticket Resolution Summary Owner Reporter
#2177 duplicate Add audio/opus to mime.types xnaas
Description

I would like to see the following added to mime.types:

audio/opus                                        opus;

Example similar changeset: https://hg.nginx.org/nginx/rev/118885f7a577

Relevant lines: https://github.com/nginx/nginx/blob/master/conf/mime.types#L79-L83

I've love to submit a changeset myself, but I'm afraid I'm utterly lost when it comes to hg.

#843 wontfix Add checking modify date in ngx_http_gzip_static_module + variable which indicate which version of file precompressed or original nginx would be using Mikhail
Description

http://nginx.org/en/docs/http/ngx_http_gzip_static_module.html#gzip_static

Nginx checking the existence of precompressed files without checking modify date. If .gzip file is older than original resource must used original resource.

I also propose to define variable which indicate which version of file precompressed or original nginx would be using. It needed for purpose automatic minification and compression.

Example:

server {

if ($request_method !~ (GET|POST)$ ) {

return 444;

}

listen 80; listen [::]:80; server_name mysite.com; root /home/mysite/www/minify;

error_log /home/mysite/logs/nginx_error_minify.log; access_log /home/mysite/logs/nginx_access_minify.log;

#pass the PHP scripts to FastCGI server listening on 127.0.0.1:9000 location ~* \.(css|js)$ {

expires max; gzip off; gzip_static on;

include fastcgi_params; fastcgi_param SCRIPT_FILENAME /home/mysite/www/minify/nginx-minification.php;

if (! $used_gzip_static) {

fastcgi_pass unix:/var/run/php-fpm/php-fpm.sock;

}

}

}

#826 fixed Add config option for NGX_HTTP_CACHE_VARY_LEN Neil Craig
Description

Hi

Currently NGX_HTTP_CACHE_VARY_LEN is hardcoded at 42 characters in length. This is undocumented and causes us major issues (as we vary on zero to many header values) in our reverse proxy setup.

I have a workaround currently which is a build-time patch (against 1.9.x): https://gist.github.com/neilstuartcraig/62cb5236eeabab9a8a4d

It would be really nice if this could be a configurable option to make it simple to change without mandating users compile nginx from source.

I have had messages via comments and twitter since documenting this on my blog (https://thedotproduct.org/nginx-vary-header-handling/) from several people who hit the same issue.

Cheers Neil

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