Custom Query (2296 matches)

Filters
 
Or
 
  
 
Columns

Show under each result:


Results (22 - 24 of 2296)

1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18
Ticket Resolution Summary Owner Reporter
#2589 invalid http write filter limit ifdandy@…
Description

https://github.com/ifdandy/awsome_js/blob/main/nginx%E6%8A%A5%E9%94%99_20240112153515.png

My server encountered an error when sending to the client: [alert] 2171#0: *1163 http write filter limit 000000000056228F. I tried modifying various configurations but couldn't find the solution. I couldn't find any information on Google and ChatGPT.

Please help me!!!

user www www; 
worker_processes auto; 
pid /var/run/nginx.pid; 
error_log /www/log/nginx_error.log; 
worker_rlimit_nofile 51200; 
worker_shutdown_timeout 10; 
events {
    use epoll; 
    worker_connections 51200; 
    multi_accept on; 
}
http {
    include mime.types; 
    log_format main_host '$remote_addr\t$time_local\t$request_method\t$scheme://$host$request_uri\t$status\t$body_bytes_sent\t$http_referer\t$http_user_agent\t$http_x_forwarded_for\t$request_time'; 
    access_log /site/logs/access.log main_host; 
    default_type text/html; 
    server_names_hash_bucket_size 512; 
    client_header_buffer_size 32k; 
    large_client_header_buffers 4 32k; 
    client_max_body_size 50m; 
    sendfile on; 
    tcp_nopush on; 
    keepalive_timeout 60; 
    tcp_nodelay on; 
    gzip on; 
    gzip_min_length 1k; 
    gzip_buffers 4 16k; 
    gzip_http_version 1.1; 
    gzip_comp_level 5; 
    gzip_types text/plain application/javascript application/x-javascript text/javascript text/css application/xml; 
    gzip_vary on; 
    gzip_proxied expired no-cache no-store private auth; 
    gzip_disable "MSIE [1-6]\."; 
    limit_conn_zone $binary_remote_addr zone=perip:10m; 
    limit_conn_zone $server_name zone=perserver:10m; 
    proxy_cache_path /site/nginx/cache levels=1:2 keys_zone=my_cache:2048m max_size=100g; 
    req_status_zone server_name $server_name 256k; 
    req_status_zone server_addr $server_addr 256k; 
    req_status server_name server_addr; 
    # 加载站点独立配置
    include /www/data/vhost/cdn_proxy/*.upstream; 
    include /www/data/vhost/*.conf; 
    include /www/data/vhost/cdn_site/*.conf; 
    server {
        listen 80 default_server; 
        listen 443 ssl default_server; 
        server_name localhost; 
        root /site; 
        add_header Content-Type 'text/html; charset=utf-8'; 
        error_page 403 /www/data/403.html; 
        error_page 404 /www/data/404.html; 
        # DEFAULT SSL CONFIG
        ssl_certificate /site/fullchain.pem; 
        ssl_certificate_key /site/privatekey.pem; 
        ssl_protocols TLSv1.2 TLSv1.3; 
        ssl_ciphers EECDH+CHACHA20:EECDH+CHACHA20-draft:EECDH+AES128:RSA+AES128:EECDH+AES256:RSA+AES256:EECDH+3DES:RSA+3DES:!MD5; 
        ssl_prefer_server_ciphers off; 
        ssl_session_cache shared:SSL:10m; 
        ssl_session_timeout 10m; 
        add_header Strict-Transport-Security "max-age=31536000"; 
        location /nginx_status {
            stub_status on; 
            allow 127.0.0.1; 
            deny all; 
        }
        location /req_status {
            req_status_show on; 
            allow 127.0.0.1; 
            deny all; 
        }
        location /download {
            add_header Content-Disposition "attachment;filename*=utf-8'zh_cn'$arg_n"; 
            alias /www/server/download; 
            autoindex on; 
            #	autoindex_exact_size on;
        }
    }
}
#2588 invalid Unable to compile Nginx with both dynamic module and ASAN at the same time Ivan Shaverskyi
Description

We have Nginx module we'd like to test with ASAN. When trying to both add the keys needed for ASAN (per Development guide) and --add-dynamic-module once Nginx starts we get an error like so

==1==ASan runtime does not come first in initial library list; you should either link runtime to your application or manually preload it with LD_PRELOAD.

When we only add keys for ASAN everything seems fine. Is there something we're missing to build Nginx ASAN and dynamic module all at once or it is not supported yet?

Attaching slightly obfuscated Dockerfile for this issue (it's not the prettiest one, we quickly made it for testing)

Also, I know it's supposed to be a different ticket but for some reason even when assembling Nginx with ASAN without dynamic module, when ASAN_OPTIONS=detect_leaks=1 is set, we fail on checking int stage in configure like so

checking for int size ...==784==LeakSanitizer has encountered a fatal error.
#2587 invalid Missing 1.24.0 stable build in RHEL repositories impssngr@…
Description

Hello. According to NGINX download page, 1.24.0 is currently considered stable version. At the same time, there is no such build in the corresponding RHEL repositories: https://nginx.org/packages/mainline/rhel/8/x86_64/RPMS/ https://nginx.org/packages/mainline/rhel/9/x86_64/RPMS/

Due to our company's guidelines, we stick to stable versions of dependencies, but we need to upgrade to the version incorporating changes from 1.23.x branch. We also cannot upgrade to 1.25.0. Please create corresponding builds for 1.24.0 version. If not possible, please confirm we can use builds of 1.23.4 version interchangeably with 1.24.0. Thank you.

1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18
Batch Modify
Note: See TracBatchModify for help on using batch modify.
Note: See TracQuery for help on using queries.