Collection View

Nginx

"Nginx open source web server and proxy"
by Cyprix as at Feb 8 2012 1:02am
Jan 31 2012
1:24pm
rtsp over http response blocked by nginx
Hello I am trying to use NGINX as reverse proxy for streaming using QuickTime and rtsp over http. QuicKTime send an http GET to my reverse proxy in a public zone, then my rev... more
Jan 31 2012
12:46pm
ip_hash load balancer incompatible with IPv6 compat. sockets
I'm using nginx to distribute the load over 3 webservers using the ip_hash method. When the listening socket is IPv4/IPv6 compatible ( listen [::]:443; ) only one of the back... more
Jan 31 2012
11:45am
A low keepalive and limit_conn
Using keepalive (on zero) and connection limit, will the limit_conn ever be hit if I had a low keepalive? keepalive_timeout 0; limit_conn_zone $binary_remote_addr zone=ad... more
Jan 31 2012
11:41am
IPv6 support for reverse proxy
Hi, Can we use nginx to act as a reverse proxy for IPv6 servers? i.e., server { listen [::]:80; listen 80; server_name kame-experiment.net *.kame-e... more
Jan 31 2012
10:16am
HttpRewriteModule and use more than 10 variables
Hi, In a rewrite, is it possible to use more than 9 variables ? How i can use $10, $11, ... ? rewrite "^/img/([0-9a-zA-Z]{1})([0-9a-zA-Z]{7})([0-9a-zA-Z]{1})([0-9a-zA-Z]{7... more
Jan 30 2012
5:50pm
Module Advice - Cassandra / Thrift
Hi all ... looking for some advice. I am looking to use the lau module in conjunction with a module that talks to nosql cassandra database. A couple of questions: Does a mod... more
Jan 30 2012
2:54pm
nginx-1.1.14
Changes with nginx 1.1.14 30 Jan 2012 *) Feature: multiple "limit_req" limits may be used simultaneously. *) Bugfix: in error ... more
Jan 30 2012
3:09am
MP4 (H264) migrating from lighttpd to nginx
It is great that MP4 module came out. So we decided to migrate our video streaming servers to nginx. In fact those are our last non-nginx webservers (not counting IIS). Howev... more
Jan 29 2012
5:15pm
Invalidate cache entry using X-Accel-Expires
Hello, Right now I'm invalidating cache entries using X-Accel-Expires 1 response with 302 redirect of the resource to itself. I want to ask for your opinion on two issues: 1... more
Jan 29 2012
10:37am
Can i collect stats without modifying nginx core code?
Hello, I'm trying to write a module that will collect extended stats, that is more then what is offered by stub_status. I've dumped a couple of stats, but had to modify sour... more
Jan 28 2012
3:41pm
nginx doesn't seem to log all accesses forwarded to usgi
Hi everybody, I hope the message does NOT show up three times. My news client always reports errors and I don't know whether the message was sent out or not. I'm having foll... more
Jan 28 2012
3:38pm
nginx doesn't seem to log all accesses (some uwsgi accesses aremissing)
Hi everybody, I hope the message does NOT show up three times. My news client always reports errors and I don't know whether the message was sent out or not. I'm having fol... more
Jan 28 2012
3:13pm
some requests no tshowing up in access_log
Hi everybody, I'm having following setup: nginx <-unix_socket-> uwsgi -> django What I noticed is, that some accesses which are successfully forwarded to uwsgi are... more
Jan 28 2012
2:19pm
imaps proxy with imaps backend?
Hello, From the forum posts that I can find, imaps/pops is not supported on the backend of an nginx proxy, is this true? Is this a planned feature? I ask because we have a s... more
Jan 28 2012
10:52am
client_max_body_size per $request_uri
Hi, I have found similar topics on discussion with location based request but because I'm using a PHP software that by default handles everything through a single PHP file (in... more
Jan 27 2012
2:02pm
How to proxy_pass POST with headers
Hi, I'm using Typo3 as CMS with Apache on Ubuntu 10.04. I'm trying to set Nginx as a reverse proxy with a typo3 extension evo_nginx_boost that uses memcached. I have everythi... more
Jan 26 2012
7:16pm
autoindex directive in 'if' section
Hello, I would like to use the following in my conf file: location a/ { if ($host ~* "") { root ""; autoindex on; } } But that doesn't work: 'nginx: [emerg] "autoindex... more
Jan 26 2012
3:30pm
Nginx ridiculously slow with PHP+SSL combined
So, I'm having an issue with SSL and fastcgi_pass, specifically to PHP. PHP over standard http gets me over 6,000 requests per second, without stressing the CPU. It's limite... more
Jan 26 2012
9:27am
Passing variables to perl modules in nginx.conf:
Hello, Is it possible to pass variables to embedded perl modules via nginx.conf and if so how would that be done? For instance(approx): http { perl_modules perl/lib; ... more
Jan 25 2012
8:49am
Module API and srv structure initialization.
Hi guys, i'm new to this forum (already introduced myself ^^). I'm writing a nginx handler module and i need to load a file in a server directive inside the config, let's ass... more