Nginx ("engine x") is a lightweight, high-performance HTTP server, reverse proxy and mail proxy, released under a BSD-like license.

learn more… | top users | synonyms | nginx jobs

0
votes
0answers
6 views

DELETE request pending for a long time then fails

I am playing with nodejs/expressjs/angularjs with MondgoDB on Ubuntu 12.04. I was going through this example. When I tested this locally, deleting a wine worked just fine. But after deploying to ...
0
votes
1answer
9 views

Unable to run 2 different flask apps on same server

Here is my nginx config server { listen 80; server_name site.com; location / { include uwsgi_params; uwsgi_pass unix:/tmp/uwsgi.sock; uwsgi_param ...
0
votes
0answers
3 views

Nginx Reverse Proxy non listening domain catch all

Using nginx as a reverse proxy I have noted that if a site is pointed at the server but does not actually exist you get served with an existing site on the server rather than a domain cannot be found ...
0
votes
0answers
22 views

How to handle redirect response properly when using Nginx as proxy server, django as backend

I have a Django application and recently I need to launch a beta version. I want to keep the current running application untouched, and redirect all request starts with "/beta" to the beta app, with ...
0
votes
1answer
23 views

nginx reverse proxy to backend running on localhost

I am not entirely sure, but I believe I might be wanting to set up a reverse proxy using nginx. I have an application running on a server at port 36000. By default, port 36000 is not publicly ...
0
votes
0answers
15 views

Debuggin Rails application in production mode without rebooting system

I am working on a very complex system which has a setup that goes like this. 1. Master Web Server Running a rails application which is actually 5 different rails application installed using chef. ...
0
votes
2answers
20 views

Nginx Running Wordpress Redirecting www to non-www by mistake

I have an nginx server (1.4.1) running a website in Wordpress. It is automatically redirecting www.mysite.com to mysite.com without any specific rules for doing so. I'd like it to stop and keep the ...
0
votes
0answers
24 views

Catalyst not redirecting urls for beta.domain.com

I'm using Catalyst for a web app that I'm building, however it cannot redirect properly. It can redirect fine with domains like http://www.domain.com/, however if I have a subdomain like ...
0
votes
2answers
20 views

nginx cant connect to rails app

nginx error log says: failed (2: No such file or directory) and i see a 404 error in the browser. I am getting "welcome to nginx" page when visiting my application homepage (www.myapp.com). I've ...
1
vote
3answers
33 views

Sitecore with DMS vs caching server - how do you handle it?

We're planning to introduce DMS to our customer's Sitecore installation. It's a rather popular site in our country and we have to use proxy caching server (it's Nginx in this case) to make it ...
-1
votes
1answer
11 views

Nginx not fully and completely uninstalled [closed]

I made a mistake of installing nginx thinking it was xdebug, suffice to say I managed to uninstall it via sudp apt-get purge nginx and shut it down via nginx -s quit so that apache2 could use the ...
0
votes
0answers
23 views

Set up python with nginx

I'm porting my web application from PHP to Python and I've decided for nginx as webserver. Now I'm trying to configure nginx to run Python (version 3) scripts with no framework. Is it possible to ...
-1
votes
1answer
14 views

Nginx Rewrite Rule for all .PHP files/requests to be parsed by index.php

Is it any magic rewrite (like it does on Apache) for nginx to be able to rewrite URLs like '/submit.php' to be able to process them from index.php? We have lots of 404 not found errors because of the ...
0
votes
0answers
19 views

Redirect rules in Nginx config files won't work

I have a site which is contained in /var/www/html/NavHawk2. It is a codeigniter website. What I needed was to rewrite URLs from /NavHawk2/login to like, NavHawk2/index.php/login and serve the static ...
0
votes
1answer
31 views

Bouncy or nginx for load balancing websockets?

I want to add a load balancer infront of my nodejs websockets server. The plan is to add another node on another physical machine and have a load balancer in front. The load balancer will also be on ...
0
votes
0answers
11 views

How to disable cache in nginx when upload file

We configure nginx as front server, and jetty as the backend server. When we upload file, nginx will cache the uploading file, and then send to the jetty server. Can anyone tell me how to disable the ...
0
votes
0answers
9 views

Can we jump to another location from a location in nginx?

I am trying to achieve something like this: location /location1/{ if ($arg_api_key = a_valid_api_key) { proxy_pass http://localhost:8080; } # else jump to location2 } location ...
0
votes
0answers
18 views

Javascript Error on Sinatra with NGINX with Unicorn

I have made a site that runs on NGINX with Unicorn Web Server, and Sinatra. I created the site locally, and everything worked great. However, after uploading, the countdown on the home page is not ...
0
votes
0answers
17 views

zend framework mvc app in subdirectory

I have a zend mvc application that is finished, however, I cannot get it to work from a subdirectory on my server. I am running nginx as my web server. I have the following in my configuration: ...
1
vote
0answers
15 views

Apache/2.2.14 (Ubuntu) to serve php and Nginix or Tomcat to serve jsp/Servlets

I'm running Ubuntu on a VPS with a LAMP stack, with Apache/2.2.14 (Ubuntu 10.04) installed with various Virtual Hosts. This current setup is running two different sites on two domains and this is ...
0
votes
1answer
38 views

I can't serve static by nginx

I have the following nodejs structure which is resides in /home/ubuntu/project directory: sever site |-css | |-styles.css |-img | |-sprite.png |-js |-script.js I'm trying to ...
0
votes
0answers
10 views

Adding LuaJIT to nginx on debian with ISPConfig

I want to implement advanced caching mechanism with Lua. I am running LEMP on Debian with ISPConfig. I don't know how to add ngx_lua module and LuaJIT to my nginx without loss of ISPConfig support.
0
votes
1answer
23 views

configuring nginx to work with python3.2

I'm having some trouble configuring nginx to work with Python3.2. I'm also struggling to find anything resembling a decent tutorial on the subject. I did however find a decent tutorial on getting ...
0
votes
0answers
20 views

error: 502 bad gateway in flask app on nginx and uwsgi

I am deploying a flask app on Ubuntu server using Nginix, uWSGI. I followed this tutorial... http://www.soundrenalin.com/about I am beginner in Nignix and Sys Admin. But when i run my app it gives ...
0
votes
2answers
26 views

Running Gunicorn behind chrooted nginx inside virtualenv

I can this setup to work if I start gunicorn manually or if I add gunicorn to my django installed apps. But when I try to start gunicorn with systemd the gunicorn socket and service start fine but ...
0
votes
0answers
13 views

exclude dir from cache on nginx

I cached all pages like this: http { ...... proxy_cache_path /var/cache/nginx levels=1:2 keys_zone=test:1000m inactive=1d max_size=50g; server { listen 8080; location / { ...
0
votes
1answer
27 views

nginx / FastCGI application loads page multiple times per request

I was following this tutorial, and I modified the code slightly and added a counter to it. The page displays "Hello World" and then displays the counter. Now, the weird thing is, the code compiles ...
0
votes
1answer
29 views

Unable to connect with socket.io using node.js and nginx

I've set up a socket.io with node.js running behind nginx. The main domain is running on nginx and sub-domain is being proxied to node.js. All the REST APIs are working fine, but when it comes to ...
0
votes
1answer
21 views

setting up nginx.conf file

I have a vps with passenger and nginx installed and I am trying to get my app deployed, however, I'm getting 404 error. In the VPN my app is located in: ~/app1 so in my nginx.conf file I have the ...
-1
votes
0answers
7 views

How many nginx buffers is too many?

Reading the nginx documentation, the proxy_buffer command has this explanatory message: This directive sets the number and the size of buffers, into which will be read the answer, obtained from ...
0
votes
0answers
15 views

how do i allow header “Accept-Ranges” in nginx?

I have an app working from localhost:8888 using tornado, and this is the headers i'v set: def set_default_headers(self): self.add_header("Access-Control-Allow-Origin", "*") ...
1
vote
0answers
13 views

CGit on Nginx do not show repository content

I configured cgit on nginx with this guide. In result, I can see list of repositories, but when I click to view on of them, I am back on main page. You cat take a look here: problem_here. Nginx logs ...
0
votes
0answers
14 views

Nginx rewrite modify url regular expressions (PCRE)

Need to convert URLs like: mysite.com/UserName ... mysite.com/UserName/?foo=dododo ... mysite.com/v?m=dododo to URL like this: mysite.com/?app=UserName ... mysite.com/?app=UserName&foo=dododo ...
-2
votes
1answer
16 views

ger return bytes transferred nginx x-accel-redirect [closed]

I am using nginx with x-accel-redirect and apache as php backend proxy at port 80 (nginx is on port 8080) to serve large static file to my clients. the php verifies client login then sends ...
0
votes
0answers
23 views

HTTP 413 Request Entity Too Large when uploading a small file

I'm running NGINX and uWSGI for my Django 1.3.2 application. I'm using django-storages to write uploaded images to S3. The response I get back is: 413 Request Entity Too Large from my application ...
0
votes
0answers
14 views

nginx Rewrite Condition from .htaccess

i just switched over to nginx and everything works fine till now. I just have a big problem with one of my old rewrites: RewriteCond %{REQUEST_URI} !.+/index.php$ RewriteRule ^special/.+/.+/.+\.php$ ...
0
votes
0answers
20 views

rails app on nginx+passenger not showing custom error pages

I have a Rails 2.3 app running on nginx 1.2.0 and passenger 3.0.7. I would like to have the custom error pages in the rails app (e.g. /rail_app/public/500.html) be displayed when the appropriate http ...
0
votes
0answers
37 views

Flask+Nginx+uWSGI : ImportError: No module named site

I installed as the http://www.reinbach.com/uwsgi-nginx-flask-virtualenv-mac-os-x.html link's tutorial and when executing the command uwsgi --ini deploy/deploy.ini, the terminal says there was an ...
0
votes
0answers
14 views

How to get nginx to uncompress gzip encoded pages

I have a few nginx servers for a pretty big website. I'm proxying an external site, who ONLY sends their content encoded as gzip, even if I send 'Accept-Encoding: ' headers with my request. It is ...
0
votes
1answer
21 views

Check if file exists on Nginx using regex

I'm trying to translate some htaccess files to Nginx vhost configuration, and i'm having trouble with this: RewriteCond %{DOCUMENT_ROOT}/img/id_$1_$2 -f RewriteRule ^id/(.+)/(.+)$ img/id_$1_$2 [NC,L] ...
0
votes
0answers
8 views

how to deploy sping web application on nginx?

I would like to deploy my Spring based web application in nginx? Could any one suggest me best methodology? Thanks & Regards Vijay
0
votes
1answer
22 views

Redirect an old php file to a new URL using Nginx

I have a website with URLs corresponding to PHP files: www.mysite.com/cat.php?id=stuff These PHP files don't exist anymore, how can I do a 301 redirect (for SEO reasons) to the new URL : ...
0
votes
1answer
17 views

Nginx and Varnish only serving up welcome page

I've installed and configured Nginx and varnish on a new Ubuntu 12.04 server. After upgrading Nginx to 1.4.1, I had to update some configuration settings. Now I am only seeing the Nginx "Welcome to ...
0
votes
0answers
14 views

nginx external access $uri error

NGINX local address //192.168.0.14/main -> work firewall routing xxx.xxx.xxx.xxx port 1000 to 192.168.0.14 port 80 //xxx.xxx.xxx.xxx:1000/main -> dont work and no response but ...
0
votes
1answer
34 views

Setting the path for the root directory in a rails application

I am using nginx and passenger to deploy my rails app. I followed the steps given at http://www.modrails.com/documentation/Users%20guide%20Nginx.html#deploying_rails_to_sub_uri to deploy my app to a ...
-3
votes
0answers
71 views

Building a website: PHP vs NodeJS [closed]

I can't decide which technology will be the best to use for a website. It will a online game and I'll use the NodeJS sockets for sure. I'll use Nginx to server static file (CSS, JS, Images, Fonts). I ...
-1
votes
0answers
12 views

I install nginx in windows, may I install 3party modules for nginx? [closed]

I install nginx on windows os, may I install 3party modules for nginx like "--add-module=/path/to/nginx-http-concat"?
0
votes
0answers
15 views

PHP and Nginx fastcgi_pass_request_body off uploads a file multiple times?

I have configured Nginx to include the following configuration: client_body_temp_path /dev/shm/nginx_client_body_temp; fastcgi_pass_request_body off; client_body_in_file_only clean; fastcgi_param ...
1
vote
1answer
25 views

Serving static files from appfog

I've seen people reporting how to serve static HTML content directly from Nginx that appfog employs with node.js and python apps. Has anyone managed to do this with a Java based application? I'm ...
-1
votes
0answers
19 views

Nginx failing to bind to a addres which is open [closed]

I am trying to make apache and nginx work together so nginx handles the static files and then apache does the php ones. I successfully changed apache to run on port 8081, and it is, when I try to ...

1 2 3 4 5 99