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
12 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
8 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 ...
15
votes
4answers
5k views

node.js itself or nginx frontend for serving static files?

Is there any benchmark or comparison which is faster: place nginx in front of node and let it serve static files directly or use just node and serve static files using it? nginx solution seems to be ...
0
votes
0answers
11 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
17 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 ...
3
votes
2answers
845 views

nginx server configuration: subdomain to folder

I migrated from Apache 2 to nginx and I've got problems to handly my subdomain control. What I want: When x.domain.tld is requested, internally rewrite to domain.tld/x The problem I've got is that ...
3
votes
5answers
985 views

Static file versioning with Django

I am setting far-future expires headers for my CSS/Javascript so that the browsers don't ever ask for the files again once they get cached. I also have a simple versioning mechanism so that if the ...
0
votes
0answers
7 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
8 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
15 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
2answers
21 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
12 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: ...
7
votes
4answers
8k views

Add slash to the end of every url (need rewrite rule for nginx)

I try to get an "/" to every urls end: example.com/art should example.com/art/ I use nginx as webserver. I need the rewrite rule for this.. For better understanding check this: ...
1
vote
0answers
9 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 ...
1
vote
2answers
92 views
+150

404 Not Found error in deploying rails 3.2.12 app (with engines) to SUB URI on nginx/passenger

We need to deploy a rails 3.2.12 app to sub uri nbhy on a ubuntu 12.04 server. The rails app has 3 engines and one of them is authentify which is for user authentication. The main app's root pointing ...
0
votes
1answer
35 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 ...
17
votes
4answers
26k views

Nginx location directive doesn't seem to be working. Am I missing something?

I've set up Nginx as my main web server and have two Mochiweb based servers behind it. Certain requests are reverse-proxied to these two servers. now, I want to access phpmyadmin (located at ...
8
votes
2answers
4k views

Serving php files from different locations in nginx

I have my main website and wordpress in different directories on my server on which I use nginx as the web server. The main website is in /home/me/www and Wordpress is in /home/me/wordpress. I need to ...
3
votes
2answers
2k views

nginx log analysis with goaccess

I want to parse and analyze the nginx logs with goaccess and take a report from the analyzed logs. But, when I run the zcat -f access.log.*.gz | goaccess -a -c command, it gives me the error : ...
0
votes
0answers
6 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
19 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
19 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
0answers
11 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
26 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 ...
4
votes
2answers
1k views

Nginx rolling restart of Rails app with capistrano

For the life of me I can't figure out how to make this work properly. The problem is similar to what others have, such as: How to do a rolling restart of a cluster of mongrels We, however, are using ...
0
votes
1answer
15 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
18 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 ...
0
votes
1answer
21 views

Nginx rewrite wordpress page

I have WordPress (example.com) on nginx with created page A, which has permalink example.com/a . Wordpress doesn't have page with permalink example.com/b . I want to inner rewrite uri /b to show page ...
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 ...
-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
14 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
3answers
297 views

Nginx - Need regex to append a parameter to url

I have been stuck on a regex. I want to append foo=1 to all URLs. For a URL like: www.xyz.com/ Rewrite: www.xyz.com/?foo=1 For a URL like: www.xyz.com/?abc=2 Rewrite: www.xyz.com/?abc=2&foo=1 ...
0
votes
2answers
27 views

No input file specified Nginx WordPress installation

blog.mydomain.com/phpinfo.php (which simply shows phpinfo()) works fine. What am I missing? Directory root of my blog is /usr/share/nginx/html/blog/ I'm using Centos. /etc/nginx/nginx.conf is ...
0
votes
3answers
52 views
+50

Sending extra header in nginx rewrite

Right now, I am migrating the domain of my app from app.example.com to app.newexample.com using the following nginx config: server { server_name app.example.com; location /app/ { ...
1
vote
2answers
60 views
+50

Invalid update of symlink static files with nginx

I have got a Symfony2.2.1 project which run with a nginx/1.2.6 (Ubuntu 13.04 VirtualBox). The render of assets are ok with hard link. With symlink, it works only on the first initialisation. When I ...
0
votes
2answers
24 views

nginx proxy doesn't cache OSCP responses

I want to use nginx as a caching proxy in front of an OCSP responder. 'An OCSP request using the POST method is constructed as follows: The Content-Type header has the value "application/ocsp-request" ...
0
votes
2answers
36 views
+50

nginx, uwsgi and python - uwsgi service is not starting

I have python application (concrete Django) running on my server. Before yesterday, it was successfully running under apache with mod-wsgi with almost no problem. I had two main reason to switch to ...
0
votes
0answers
18 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 ...
-2
votes
1answer
14 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 ...
-3
votes
0answers
57 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 ...
3
votes
3answers
1k views

Try_files does not hit PHP ( NginX configuration)

Below is my nginx.conf. In case of non existing files /index.php is served fine. But when my URL is /foo/bar => /foo/bar/index.php is served as PHP source code via download. Any ideas? ...
0
votes
1answer
40 views

questions about $args on try_files inside location with regex

(sorry for my bad english) i have a URL like this: http://www.domain.com/resize.php?pic=images/elements/imagename.jpg&type=300crop that php checks if that image exists and serves, if not, ...
0
votes
1answer
135 views

Nginx + Passenger to serve rails apps in different sub URIs

I'm running a rails app in a Debian server (ip 192.168.1.193) with passenger as a standalone $ cd /home/hector/webapps/first $ passenger start -a 127.0.0.1 -p 3000 And I want to serve this app ...
0
votes
1answer
35 views

404 error on nginx location directive

I am trying to convert my apache redirection directives to nginx one, for now I have the following directive: server { listen 80; index index.php index.html; server_name ...
0
votes
1answer
14 views

How can I get the value from Redis and put it in a variable in NGiNX?

Here is my config: location = /session { set $redis_key "$cookie_session"; redis_pass 000.00.000.000:6379; echo $cookie_session; echo ' - '; ...
0
votes
0answers
13 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
13 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
35 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 ...
4
votes
2answers
162 views

Enable SEO URLs on multi stores and subdomains on OpenCart using Nginx

I am trying to get SEO URLs working across multi-stores in OpenCart. I have two stores in the admin http://www.shop.com (default) http://m.shop.com SEO URLs work for http://www.shop.com But they ...

1 2 3 4 5 99