Custom Query (2297 matches)

Filters
 
Or
 
  
 
Columns

Show under each result:


Results (91 - 93 of 2297)

Ticket Resolution Summary Owner Reporter
#2497 wontfix Unable to build nginx quic with --with-stream_quic_module Karthikdasari0423@…
Description

I am trying to build nginx for quic and while trying to build i am facing below issue

root@ubuntu:/src/nginx-quic# auto/configure nginx -V 2>&1 | sed "s/ \-\-/ \\\ \n\t--/g" | grep -v -e 'http-geoip2' | grep "\-\-" | grep -ve opt= -e param= -e build= --build=nginx-quic --with-debug --with-stream_quic_module --with-http_v3_module --with-cc-opt="-I/src/boringssl/include" --with-ld-opt="-L/src/boringssl/build/ssl -L/src/boringssl/build/crypto" auto/configure: error: invalid option "--with-stream_quic_module" root@ubuntu:/src/nginx-quic#

But when i tried after removing --with-stream_quic_module,it worked fine

checking for PCRE library ... found checking for PCRE JIT support ... found checking for OpenSSL library ... found checking for OpenSSL QUIC support ... found checking for zlib library ... found creating objs/Makefile

Configuration summary

+ using threads + using system PCRE library + using system OpenSSL library + using system zlib library

nginx path prefix: "/usr/share/nginx" nginx binary file: "/usr/share/nginx/sbin/nginx" nginx modules path: "/usr/lib/nginx/modules" nginx configuration prefix: "/etc/nginx" nginx configuration file: "/etc/nginx/nginx.conf" nginx pid file: "/run/nginx.pid" nginx error log file: "/var/log/nginx/error.log" nginx http access log file: "/var/log/nginx/access.log" nginx http client request body temporary files: "/var/lib/nginx/body" nginx http proxy temporary files: "/var/lib/nginx/proxy" nginx http fastcgi temporary files: "/var/lib/nginx/fastcgi" nginx http uwsgi temporary files: "/var/lib/nginx/uwsgi" nginx http scgi temporary files: "/var/lib/nginx/scgi"

root@ubuntu:/src/nginx-quic#

Could you please confirm is this known issue or am i missing anything?

After building nginx-quic without --with-stream_quic_module root@ubuntu:/src/nginx-quic# uname -v #66-Ubuntu SMP Fri Jan 20 14:29:49 UTC 2023 root@ubuntu:/src/nginx-quic# ./objs/nginx -V nginx version: nginx/1.23.4 (nginx-quic) built by gcc 11.3.0 (Ubuntu 11.3.0-1ubuntu1~22.04.1) built with OpenSSL 1.1.1 (compatible; BoringSSL) (running with BoringSSL) TLS SNI support enabled configure arguments: --prefix=/usr/share/nginx --conf-path=/etc/nginx/nginx.conf --http-log-path=/var/log/nginx/access.log --error-log-path=/var/log/nginx/error.log --lock-path=/var/lock/nginx.lock --pid-path=/run/nginx.pid --modules-path=/usr/lib/nginx/modules --http-client-body-temp-path=/var/lib/nginx/body --http-fastcgi-temp-path=/var/lib/nginx/fastcgi --http-proxy-temp-path=/var/lib/nginx/proxy --http-scgi-temp-path=/var/lib/nginx/scgi --http-uwsgi-temp-path=/var/lib/nginx/uwsgi --with-compat --with-debug --with-pcre-jit --with-http_ssl_module --with-http_stub_status_module --with-http_realip_module --with-http_auth_request_module --with-http_v2_module --with-http_dav_module --with-http_slice_module --with-threads --with-http_addition_module --with-http_gunzip_module --with-http_gzip_static_module --with-http_sub_module --build=nginx-quic --with-debug --with-http_v3_module --with-cc-opt=-I/src/boringssl/include --with-ld-opt='-L/src/boringssl/build/ssl -L/src/boringssl/build/crypto' root@ubuntu:/src/nginx-quic# root@ubuntu:/src/nginx-quic#

#2496 invalid UDP traffic bandwidth is not limited by proxy_upload_rate and proxy_download_rate m-cieslinski@…
Description

Hi, I have problems with bandwidth limit for UDP traffic in Nginx Community Edition (non-enterprise). I've tested TCP/HTTP traffic and bandwidth limit is working fine. But for UDP it is not limiting it at all. Also UDP traffic was tested with DNS config like here https://github.com/tatsushid/nginx-udp-lb-example/blob/master/nginx.conf.template. And still without proper limit applied. Only rate/request per sec is working correctly. I followed this guide https://docs.nginx.com/nginx/admin-guide/security-controls/controlling-access-proxied-tcp/ and https://nginx.org/en/docs/stream/ngx_stream_proxy_module.html#proxy_upload_rate. UDP protocol is GELF UDP proxied to upstream Graylog server. Nginx version tested: 1.19.X and latest.

events { worker_connections 1024;

}

stream {

upstream gelf_tcp {

hash $remote_addr; server graylog:12211 fail_timeout=10s;

}

server {

listen 12201; proxy_timeout 10s; proxy_download_rate 20; proxy_upload_rate 11; proxy_connect_timeout 1s; proxy_pass gelf_tcp;

}

upstream gelf_udp {

hash $remote_addr; server graylog:12211 fail_timeout=10s;

} limit_conn_zone $binary_remote_addr zone=conn_perip:10m;

server {

listen 12201 udp; proxy_download_rate 20; proxy_responses 0; proxy_timeout 1s; proxy_upload_rate 11; proxy_pass gelf_udp; proxy_bind $remote_addr transparent; # limit_conn conn_perip 5; # limit_conn_log_level warn;

} log_format proxy_log '$remote_addr [$time_local] '

'$protocol $status $bytes_sent $bytes_received ' '$session_time "$upstream_addr" ' '"$upstream_bytes_sent" "$upstream_bytes_received" "$upstream_connect_time"';

access_log /var/log/nginx/access.log proxy_log buffer=32k; error_log /var/log/nginx/error.log warn;

}

#2495 invalid How to create same location to point different proxy server kadhar2006@…
Description

I have configured the Load Balancer(Nginx) for ignition. I have created two upstream(ignapp & ignProdapp) server. For ignapp upstream it is working fine. I need to configure the below code for upstream server(ignProdapp) in the same configuration file how to do this. Below is the sample configuration for the server ignapp. Can you please help me how to configure the below settings for another upstream server. Below is the config setting for ignapp same way I need to do it for creating location ~ /data/, location ~ /system/ , location ~ /res/ , location ~ /idp/, location ~ /.well-known/ for ignappPro Upstream server .

I have attached the configuration file here.

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