Nginx ("engine x") is a lightweight, high-performance HTTP server, reverse proxy and mail proxy, released under a BSD-like license.
7
votes
0answers
640 views
POST hook on Bitbucket
How to use the POST url in bitbucket on private Jenkins?
I have been experiencing problems with bitbucket and their post commit.
Description :
...
7
votes
0answers
663 views
I lost nginx.pid,it disappeared
Here is part of my nginx.conf:
pid /www/nginx0836/nginx.pid;
While I restart nginx, in several seconds I run ls /www/nginx0836 and it lists nginx.pid.
But after several seconds, running ls ...
3
votes
0answers
82 views
Cypher error with py2neo only when running nginx
I have a flask app that uses neo4j for some data. Everything runs fine locally when I use the python server, but when I deploy on nginx+uwsgi, I can no longer execute cypher queries in py2neo. I ...
3
votes
0answers
169 views
nginx as reverse proxy for SMTP: How to send information to upstream server
I've set up nginx as reverse proxy for SMTP. My nginx setup is able to do the following:
Take user input
Authenticate the user via a yapache server
Receive upstream server's ip from the auth server
...
3
votes
0answers
542 views
gunicorn, nginx (v 1.3.14), django, and gevent-socket.io, on dotcloud
I am trying to deploy gunicorn + gevent behind nginx (v 1.3.14) on dotcloud. I have a few questions about it. I am aiming to adapt the python-on-dotcloud example. So far, I have not been able to ...
3
votes
0answers
271 views
404 Error setting up subdomain with nginx, unicorn, rails
I have a VPS and recently moved my server setup from apache/passenger to nginx/unicorn and added a staging server. If I hit the server directly, http://xxx.xxx.xx.xx, my app comes up no problem. If, ...
3
votes
0answers
250 views
Nginx image_filter
I store static on S3 and use nginx as front-end. For fetch from S3 I use this construction:
location / {
try_files $uri @s3;
}
location @s3 {
root /var/www/static.dev;
proxy_pass ...
3
votes
0answers
119 views
nginx speed control based on cookies [or any other variable I can set on the fly]?
I have this config in my Nginx server:
limit_rate 500k;
location ~ \.mp4$ {
mp4;
limit_rate_after 4m;
limit_rate 90k;
limit_req zone=one burst=5;
limit_conn addr 2;
}
I want the ...
3
votes
0answers
1k views
Configuring ejabberd + BOSH + HTTP Binding + Candy.js
I am trying to get the Candy.js example to connect to a locally installed ejabberd server that I have configured according to this tutorial.
I know nginx is proxying correctly because I can navigate ...
3
votes
0answers
692 views
Nginx reverse-proxy cache invalidation strategies
I've been using Nginx 0.8.5 as a caching reverse-proxy to build out a custom cdn-like solution to speed up our site's load time. It works great so far except that cache invalidation is really cludgy, ...
2
votes
0answers
21 views
Nginx webdav is not showing files/folders with square brackets
I have Nginx with WebDAV module working and everything is right, except the files or the folders that contains any square brackets ] or [. That files/folder are never showed in the list.
I never had ...
2
votes
0answers
48 views
Searching for a project skeleton for Chef + Django on Linux
Is there a pre-existing, best practices project skeleton for Chef + Django web applications on Linux (Ubuntu preferably)?
For production Django systems our preferred setup is Supervisor, Nginx, ...
2
votes
0answers
22 views
Ajax Popup Windows not loading while configuring ssl
I am working with Ruby on Rails,Using nginx as web server and unicorn as application server. I tried to configure ssl for my application and Its works perfectly. The nginx configuration I used is ...
2
votes
0answers
171 views
nodejs + https + express - Error 324 (net::ERR_EMPTY_RESPONSE)
I have a nodejs server structured like so:
(app.js):
var fs = require('fs'),
http = require('http'),
https = require('https'),
express = require('express'),
connect = ...
2
votes
0answers
80 views
libmemcached - memcached_mget seems to block
I have a single memcached server. I use the libmemcached C api to interface with it. I am using non blocking mode and no reply mode (behavior flags).
I am also using libmemcached inside an nginx C ...
2
votes
0answers
122 views
Too many redirects error while trying to configure rails application as SSL using nginx and unicorn
I am trying to configure a rails application as SSL using nginx and unicorn.
Am trying to set it up locally. For that I first created a self signed certificate using openssl for nginx. I followed the ...
2
votes
0answers
62 views
In linode production Delayed jobs gets stopped after sometime
I am using delayed_jobs 3.0 gem for email notification in my rails3 app. It is deployed on linode using nginx+capistrano. My linode config is RAM of 512MB and storage space of 24GB. In that two ...
2
votes
0answers
192 views
AngularJS + Ngingx CORS
Im trying to have the following setup:
API
api.domain.com
APP
domain.com
I've setup 2 different nginx configs, one for each of the 2 urls.
Both of them work when doing regular GET requests in the ...
2
votes
0answers
127 views
configure mongo c++ driver code in fcgi c++ program
I and trying to connect mongo c++ driver code with fcgi c++ code which i found on this site http://www.nongnu.org/fastcgipp/ my code is as follows .
...
2
votes
0answers
173 views
nginx produces four times more traffic than node-http-proxy
we are using node-http-proxy for a while and it works fine. But as our system grows bigger, we want to move to nginx.
We consume about 100 request per second at the moment, which produce an outgoing ...
2
votes
0answers
160 views
PHP Copy File Intermittently Fails (Debian Squeeze, PHP 5.4, NGINX 1.2.6)
I have some code that copies a file to a temporary location where it is later included in a zip file.
I already have the source files stored in a local cache directory, and have also stored the SHA1 ...
2
votes
0answers
155 views
nginx load balancing keep redirect me wrong
hi i have nginx server and other webserver which i want to hide from public direct access. but when i try to access that server on root i send redirect response to client to url like this: ...
2
votes
0answers
330 views
How to remove certain cookies from nginx response
I have nginx set up as a reverse proxy server and I want to remove certain cookies set on the backed server (apache)
My website uses a lot of cookies which I can not control (Expression Engine CMS, ...
2
votes
0answers
202 views
Same Machinekey on Mono and IIS running MVC 4
Current setup:
Server A -
OS: Debian Squeeze
Web Server: Nginx + Fastcgi + Mono 3.0
ASP.NET MVC 4 (.Net 4.5) using base internet template.
Db Backend: Mysql
Domain: (example) ...
2
votes
0answers
289 views
Problems deploying Pyramid with uWSGI on Nginx
I seem to be having some slight problems deploying a Pyramid web application. The problem seems to lie in my init script that I am using to start my web application on boot. For some reason, uWSGI ...
2
votes
0answers
118 views
Where do print statements write to when using django + nginx + flup?
I'm trying to debug a django app of mine, but it's hard because I have no idea where my print statements are sending their output. I'm using flup and fastcgi with django and nginx, and I can see ...
2
votes
0answers
162 views
Gridfs-Nginx vs Gridfs from tornado
i've found this benchmark but it is old (2010).
is there any one who made a benchmark using:
Serving the picture using Nginx-GridFS
VS
Serving the picture from Tornado
2
votes
0answers
368 views
Nginx + Unicorn do not allow upload file > 400mb
I have app in RoR, I test it on apache2 to upload file > 1 GB, it's working. But I must use nginx. I have this error after 100% upload on nginx server:
2012/11/09 17:17:01 [error] 1436#0: *12 ...
2
votes
0answers
711 views
Magento Enterprise returns 404 error: Page not found on nginx, CentOS
I have some big issue with running magento on nginx, php-fpm.
http://img16.imageshack.us/img16/8108/magento4042.png
I was trying for 3 days to solve it. I can't open any page (including home page).
...
2
votes
0answers
1k views
Slow Nginx + PHP-FPM during High Traffic on Magento Enterprise
We are using Nginx with PHP-FPM for Magento Enterprise Edition 1.12
Everything works fine but when we get visitors over 150 the speed drops. During this time we have noticed that CPU utilization is ...
2
votes
0answers
149 views
Passenger+Nginx show custom 500 page
I'm using Rails 3.2 with passenger+nginx. I want to display nice custom 500 page when the db server is down. I want to show something when my rails app cannot be started. Here is my nginx:
server {
...
2
votes
0answers
326 views
nginx + proxy pas - 504 gateway timeout , timeout after 1min, 30 sec. Tried proxy_read_timeout but no luck
here is my config :
location / {
proxy_pass http://localhost:8003/;
proxy_connect_timeout 3600s;
send_timeout 3600s;
proxy_read_timeout 3600s;
include /etc/nginx/proxy_params;
}
...
2
votes
0answers
174 views
Django image upload works in local environment but not on Amazon EC2 running nginx
I am trying to upload an image using a Django ModelForm. Everything works fine on my home computer, so the problem is probably not in the template or view function. However, when running on nginx + ...
2
votes
0answers
149 views
Rails pages not showing even though passenger is running
I am trying to deploy my first proper Rails Project.
I have a Ubuntu 12.04 virtual server with Nginx, Passenger and PostgreSQL installed.
I have deployed the code to the server using Capistrano.
...
2
votes
0answers
412 views
Using syslog with nginx / php-fpm
I'm looking into migrating my Apache based Drupal installs, but need to have rsyslog based remote error logging. We're using Amazon EC2, and error_log files written to instances that come and go is a ...
2
votes
0answers
359 views
Very simple authentication using one-time cookie on nginx
I have a site intended only for private consumption by 3 coders. It's simple HTML served by nginx directly but intended for consumption inside and outside the office.
I want to have a simple password ...
2
votes
0answers
229 views
Why nginx server file upload always fail?
The specific situation is:
I have a app (rails + passenger + nginx), which provides a upload function to users to upload files. I deployed to the server after the test
use my computer file upload ...
2
votes
0answers
254 views
Browser loads duplicate copies of scripts
If I open my webpage and then look at developer tools on the browsers like chrome/firefox/ie, I see multiple copies of the same view/javascript files loaded. This can potentially screw up how ...
2
votes
0answers
291 views
Restify, Node.js urlencoding for routes processing
I have a route like this -
server.get({
url : '/reguser/:useremail',
name : 'pre-register-user'
}, function(req, res, next) {
return next();
}, function sendResult(req, res, ...
2
votes
0answers
115 views
Are there any good articles or tips about the Nginx resolver module?
I can't seem to find any good tutorials on what can be done with ngx_resolver. For example I am trying to find the best way to dynamically update the proxy_pass directive in a vhosts file.
2
votes
0answers
240 views
Apache+Passenger Optimization Questions?
I am working to optimize the speed of a Rails application we have in production.
It is built on an Apache,Passenger,Rails 2.35, Ubuntu on an m1.large EC2 instance (7.5GB RAM, 4 Compute Units) We ...
2
votes
0answers
187 views
'cache … miss' when running rails app on windows in 'production' mode using thin + Nginx
I've got rails app run on windows in 'development' mode using thin + Nginx,
the command is thin start, it works well!
BUT when I run thin -e production start, the app is started, but I got 'cache ... ...
2
votes
0answers
717 views
Getting 500 Internal Server Error, readv() failed (104: Connection reset by peer) while reading upstream
I'm receiving an HTTP 500 (Internal Server Error) every X calls. I'm not having any type of high CPU load (it's about 5%). I can see this error in the log when it happens:
In /var/log/nginx/error.log
...
2
votes
0answers
187 views
Response status 201 not accepted in CORS requests
I'm setting up an app with some REST webservices, that respond with 200 or 201 according to the result of the request.
On the other hand, i'm developing a javascript web application that has to use ...
2
votes
0answers
242 views
Thin::RestartTimeout when using onebyone
The onebyone feature of Thin seems cool, but it's causing my deploys to fail.
** [out :: 97.107.141.165] Stopping server on 127.0.0.1:3000 ...
** [out :: 97.107.141.165] Sending QUIT signal to ...
2
votes
0answers
207 views
Unicorn+rails3.1+nginx fill the memory
I've read that Ruby doesn't return the memory to OS, it is okay. But how does it fill 512 mb of RAM? There is quite simple rails application with even one worker (i had to cut others to reduce the ...
2
votes
0answers
308 views
ASP.NET customErrors behind nginx reverse proxy
I have a ASP.NET Server running on port 8080 on a machine, and for performance reasons an nginx caching reverse proxy running on port 80. Requests are done to port 80 and then, if not answered by the ...
2
votes
0answers
519 views
Nginx fastcgi_cache_key with $http_cookie
I'm trying to scale Drupal with nginx fastcgi caching. I'm using
fastcgi_cache_key $http_cookie$request_method$host$request_uri;
fastcgi_cache_methods GET HEAD;
fastcgi_pass ...
2
votes
0answers
318 views
How to make nginx-gridfs properly use the result of regex location match
In short, this doesn't work:
location ~* /grid/(.+)/ {
gridfs filestore field=filename type=string root_collection=storage.$1;
}
This is using https://github.com/mdirolf/nginx-gridfs
...
2
votes
0answers
716 views
Nginx on Windows using WSGI
now that i've decided to use Nginx as my favourite webserver to deploy Django, i got some "mist":
i'm on Windows, that said, i got errors when i try to use Django as FastCGI, it seems that Flup dont ...

