nginx not removing stream socket (1 reply)
Hi, On CentOS7 . nginx is not removing the stream socket on shutdown causing restarts to fail unless the socket file is manually removed. nginx process itself exit .But becase of the file not being...
View ArticleIssue with KeepAlive (no replies)
Hi all, I need help on managing KeepAlive on my nginx webservice. Seeing error logs seems that many keepalive HTTP request are discarded by Nginx. On client side this behaviour seems to be a timeout....
View ArticleOrder of execution of nginx filters (1 reply)
Hi, I have the following three directives: location = /hello { hello_world; hola_mundo on; bonjour_monde on; } hello_world is an nginx handler module that provides content “hello world” hola_mundo and...
View ArticleSetting ssl_ecdh_curve to secp384r1 does not work (8 replies)
Hi all, I was running nginx 1.9.12 on Ubuntu 14.04 built from the source tarball with these options: --with-ipv6 --with-http_ssl_module --with-http_v2_module --with-openssl=/openssl-1.0.2g While...
View Articledoes nginx forward requests to backend servers using http or https? (5 replies)
I am using the free version of nginx on RHEL 6.7. The version is : nginx-1.10.1-1.el6.ngx.x86_64 When using nginx as a load balancer I would like to know if nginx forwards requests to backend servers...
View Articlebasic nginx setup help as load balancer (5 replies)
I was getting a host not found problem while trying to start nginx. nginx: [emerg] host not found in upstream "backendservers.com" in /etc/nginx/conf.d/default.conf:37 I am fairly certain that this is...
View Articlenginx-1.11.2 (no replies)
Changes with nginx 1.11.2 05 Jul 2016 *) Change: now nginx always uses internal MD5 and SHA1 implementations; the --with-md5 and --with-sha1 configure options were canceled. *) Feature: variables...
View Articlecache issue with cms (no replies)
Hi, I am using nginx version 1.10.1 with reverse proxy function toward Apache 2.2.15 I noticed that if I change something inside backend (eg. modify some text on some article), that changes appear on...
View ArticleRe: [nginx-announce] nginx-1.11.2 (no replies)
Hello Nginx users, Now available: Nginx 1.11.2 for Windows https://kevinworthington.com/nginxwin1112 (32-bit and 64-bit versions) These versions are to support legacy users who are already using Cygwin...
View Articlevery simple question about cache (no replies)
Hi,I set simply reverse proxy (backend is an Apache web server): upstream backend { ip_hash; server 127.0.0.1:8080; } server { listen x.y.w.z:80; # IP goes here. server_name somedomain.com; expires...
View ArticleCache calculating erroneous size (no replies)
Hello, I've been experiencing a rather strange situation regarding the cache size occupation (calculated by nginx's cache manager and reported in debug logs) versus the real occupied size as reported...
View ArticleHow to leverage HTTP upstream features (2 replies)
Hi Gurus, I'm new to nginx... I would like to define upstream handler in HTTP without a HTTP server listener. From SMTP/POP3/IMAP I would like to use the upstream handler for my http endpoint. Thus...
View ArticleErro 499 help (no replies)
My web architecture is: nginx(reverse proxy) -> nginx + php-fpm It's normal when i curl it on pc(linux shell and pc Browser). This's nginx(reverse proxy) access.log: 117.136.40.0 - -...
View ArticleNginx static file serving - Some files are 404, some not (3 replies)
I have the following server configuration block: > > > > > > > > > > > > > > > > > > > > > > > > > *server { # Running port...
View ArticleRewrite Rules from apache (3 replies)
Hi Everyone, i try to convert some rules from apache htaccess to nginx. This is my htaccess Rule: RewriteCond %{DOCUMENT_ROOT}/$3 -f RewriteRule ^(.*?)/(.*?)/(.*)$ /$3 I tried these options but it...
View Articlenginx as the proxy that provides client certificate and faced connection...
Hey, I'm using nginx for windows as a reverse proxy to upstream server. The upstream server requires client certificate and thus in the nginx config, I put the following: location / {...
View ArticleOptimization flags (4 replies)
The default --with-cc-opt flags for Nginx are these: *--with-cc-opt='-g -O2 -fstack-protector-strong -Wformat > -Werror=format-security -Wp,-D_FORTIFY_SOURCE=2'* > However I added more...
View ArticleSet up reverse proxy and loadbalancing without hostname (4 replies)
Hi Gurus My lab environment is Nginx IP: 192.168.16.206 Four Web Server: 192.168.16.201-204 My nginx.conf is http { upstream myapp1 { server 192.168.16.201; server 192.168.16.202; server...
View ArticleInsert Variable Values when loading a Cloud Config? (3 replies)
I asked a question on another site (http://stackoverflow.com/questions/37032806/does-bare-metal-coreos-etcd2-support-the-templating-feature-of-coreos-cloudinit) about loading a cloud config from nginx...
View ArticleOne goal. 2 settings. Which one would you recommend? (no replies)
Hi I am debating what is a better setting between the 2 settings below. Setting#1 and Setting#2 attempt to do the same task (flow control by controlling the IP sources). Setting#1 uses one machine and...
View Article