0
votes
4answers
94 views
How do I show what fields a struct has in gdb?
I came upon a struct called ngx_http_variable_value_t in my gdb session and I would like to print what fields it has in the console. Is that possible?
0
votes
1answer
19 views
Nginx 301 redirect inc. set cookie
Hi, what I'm looking for is the ability for nginx to detect that a url has the query string variable cid.
for example www.adomain.com/froggy?cid=12&as=false (query string can …
0
votes
2answers
36 views
Configure nginx for jboss/tomcat
Used to be in order to pass traffic to jboss/tomcat on port 80 using apache, we had to install and configure mod_jk.
Is there an equivalent for nginx? Basically want all port 80 t …
0
votes
1answer
26 views
Nginx raises 404 when using format => ‘js’
Hi,
I upload images to my App using Ajax and an Iframe. In Development everything works like a charm. But in production Nginx suddenly raises a 404 error. When I look into the log …
0
votes
1answer
96 views
Passenger, Nginx, and Capistrano - Passenger not launching Rails app at all
Essentially, my route is working perfectly, Passenger seems to be loading - all is hunky-dory. Except that nothing Railsy happens. Here's my Nginx log from starting the server to t …
2
votes
0answers
47 views
SSL slowness in EC2
We've deployed our rails app to EC2. In our setup, we have two proxies on small instances behind round-robin DNS. These run nginx load balancers for a dynamically growing and shr …
2
votes
7answers
106 views
how to process long-running requests in python workers?
Hi,
I have a python (well, it's php now but we're rewriting) function that takes some parameters (A and B) and compute some results (finds best path from A to B in a graph, graph …
0
votes
2answers
56 views
How many reverse proxies (nginx, haproxy) is too many?
I'm setting up a HA (high availability) cluster using nginx, haproxy & apache.
I've been reading great things about nginx and haproxy. People tend to choose one or the other …
0
votes
0answers
13 views
nginx errors readv() and recv() failed
I use nginx along with fastcgi. I see a lot of the following errors in the error logs
readv() failed (104: Connection reset
by peer) while reading upstream and
recv() faile …
0
votes
1answer
22 views
Problem compiling nginx on Solaris 10
My setup as below
# export PATH=/usr/sbin:/usr/bin:/usr/local/bin:/usr/sfw/bin:/usr/ccs/bin
# ./configure --prefix=/usr/local/nginx --user=webservd --group=webservd --with-http_st …
0
votes
2answers
62 views
Nginx rewrite non-www-prefixed domain to www-prefixed domain
I see the Nginx HttpRewriteModule documentation has an example to rewrite a www-prefixed domain to a non-www-prefixed domain:
if ($host ~* www\.(.*)) {
set $host_without_www $1; …
0
votes
1answer
21 views
django fastcgi nginx
i m using django with fastcgi + nginx.I want to know were the logs (error) are stored in this case
0
votes
2answers
111 views
REMOTE_ADDR not getting sent to Django using nginx & tornado
Hey guys,
So I got a simple setup with nginx for static media and load balancing and tornado as webserver for django (4 servers running). My problem is remote_addr not getting pas …
1
vote
1answer
56 views
PHP not able to set cookies through Nginx
I've got a PHP-fpm setup on nginx setup according to this article: http://interfacelab.com/nginx-php-fpm-apc-awesome/
PHP is not able to set cookies in any browser visiting the se …
0
votes
0answers
29 views
Nginx rewrite rule: check for nonexistant files and folders
I'm trying to set-up nginx rewrite rules as the following:
Original structure:
domain.com/index.php?site=project
Now I tried to mask it using the nginx rewrite engine:
if (-f $ …
