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

-1
votes
1answer
20 views

Multiple sites with SSL certificates on 1 ip [closed]

How can I host multiple sites with ssl certificates on 1 server with 1 ip running a nginx server?
0
votes
1answer
24 views

Rewriting a “location” into a subdomain in Nginx

I want to turn this URL anothersubdomain.somedomain.dev/admin into admin.somedomain.dev Also taking into consideration any succeeding URL's like anothersubdomain.somedomain.dev/admin/users/etc ...
0
votes
2answers
30 views

Too Many Redirects: passenger+nginx SSLRequirement

I have an old rails 2.3 app that I'm in the process of moving to nginx+Passenger (from Apache+Passenger). Nginx is configured for SSL and appears to be functioning correctly, except I am getting ...
0
votes
2answers
24 views

NGINX - redirect all uncunfigured subdomains

I'm happy to join community and want to share with you with my little problem. I've got wildcard entry for example.com in my DNS which points all subdomains to some machine * IN A 172.172.172.172 ...
0
votes
1answer
24 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 ...
1
vote
0answers
18 views

Plotted ab results of node, cluster and nginx, odd results? [migrated]

I did a test with ab -n 10000 -c 1000 against node.js with different configurations, each returning the string Hello World!. Results seems odd to me. X axis is the number of requests, y is the ...
0
votes
1answer
37 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
15 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 ' - '; ...
-1
votes
0answers
14 views

Nginx redirect based on pattern of request [closed]

One of my servers was attacked by DDoS a couple of days ago and it lasted for 4 days. Below are the logs snippet of the request: 36.224.180.253 - - [14/May/2013:03:11:46 +0800] "GET ...
0
votes
1answer
16 views

Regex rule in an NGinx Config to only compare against the first url param

Here is an example of our current Nginx rule that will redirect some traffic from one base domain to another (result of a DNS Migration): location ~* /(var1|var2|var3) { rewrite ^ ...
0
votes
1answer
75 views

Nginx CodeIgniter not working

I am new to nginx. I am transfering my server from apache to nginx but my many projects on the CodeIgniter core PHP sites working perfectly but the CodeIgniter is not work. My sample url like this: ...
0
votes
1answer
19 views

How to prevent nginx rewriting again after adding index file?

I'm trying to write some nginx rewrite rules for a web server, and one of them is as simple as: index index.html; ... rewrite ^/(.*)$ /web/$1 break; This rule adds a /web before the URI. It works ...
-1
votes
1answer
26 views

Configure ISPConfig to create 1 user for all sites [closed]

I'm running ISPConfig 3, Nginx, PHP5-FPM, and Ubuntu 12.10. The purpose of the VPS is to serve multiple websites for our clients. I manage them all. The clients are completely hands off. Everything ...
0
votes
1answer
41 views

How do I configure a Flask-based python app using nginx and uwsgi?

I have a Flask-based python app that needs a bunch of configuration information (e.g. database connection parameters) on app start. In my nginx configuration, I can provide parameters using ...
0
votes
0answers
33 views

How to set base uri for rails 3.2.12 app deployment?

We want to deploy rails 3.2.12 app to a ubuntu server's base uri (mydomain.com/nbhy). Is there a way we can set the base uri to mydomain.com/nbhy in rails app itself? The server is running on ubuntu ...
0
votes
3answers
34 views

NGINX Redirect without rewriting the url excluding IP and directory

We've got a page that we put up on our website when we take it down for maintenance or updates. The basic pseudocode logic looks something like this: if IP != 72.56.43.212 and location !~ /down then ...
0
votes
0answers
11 views

Proxying a weak network stream cache

If i have a network stream from an IP camera and i would like to proxy it. Like below: location /cam1/stream { proxy_pass 'http://192.168.1.22/videostream.cgi?user=user&pwd=pwd'; ...
0
votes
2answers
52 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
1answer
32 views

Setup second site on nginx

I am trying to setup a second site using nginx but looks like all requests are going to the same place. I mean to this site here "institutoprana.com.br" If you type in www.agencialojavirtual.br it ...
0
votes
1answer
27 views

NGINX Redirect Loop for a single page

I have an NGINX Webserver and I am trying to redirect the page www.example.com/newsletter to www.example.com/blog/category/newsletter but the redirect rule I have is matching both ...
0
votes
1answer
38 views

“response code: 502” using socket.io and nginx 1.4.x (stable) with proxy_pass

I am trying to make running my app (using socket.io) under nginx, and i get an WebSocket connection to 'ws://...' failed: Unexpected response code: 502 error on the server side. I have read that nginx ...
2
votes
1answer
39 views

nginx reverse proxy setup resulting in strange access-control-allow-origin issue

I have a Rails application setup on Nginx/Passenger on Ubuntu. Recently I added Faye running on Thin which requires adding a reverse proxy server setup in my Nginx config. I managed to get this to ...
0
votes
2answers
70 views
+100

nginx as a proxy for NodeJS+socket.io: everything is OK except for big messages

As explained on nginx's website I've used these settings for my nginx to proxy websockets to a NodeJS server: location /socket.io/ { proxy_pass http://backend; proxy_http_version 1.1; ...
0
votes
1answer
35 views

CORS strange behavior nginx + backbone javascript

Hi I use nginx webserver and I have added headers to my config file add_header Access-Controll-Allow-Methods "OPTIONS, HEAD, INDEX, GET, POST, PUT, DELETE"; add_header ...
0
votes
1answer
20 views

Block direct access to php files (only rewrited) using nginx

I have files like Ucp.php Somesite.php and i want to create a rewrite rules for nginx. This is not problematic. But i also want to block direct access to those php files, so that enetring ...
2
votes
1answer
41 views

How to serve Django static file on nginx

I am trying to configure Nginx with uWSGI to serve Django app but the layout of admin panel is distorted totally... Here is my Nginx configuration: upstream django { server 127.0.0.1:8000; } ...
0
votes
3answers
39 views

nginx /index.html to / rewrite

I am trying to rewrite /index.html to / for SEO purposes (stupid search engines which confuse index.html with / and penalize for duplicate content) -- also to reconcile web analytics data. I've tried ...
0
votes
0answers
22 views

Error installing Nginx on redhat5

i was trying to install nginx on redhat5, everything seems good till "make" nginx; when typing "make install", i got an error below: make[1]: Entering directory /usr/local/src/nginx-1.4.1' ...
0
votes
1answer
43 views

Nginx proxy_pass : Is it possible to add a static parameter to the URL?

I'd like to add a parameter in the URL in a proxy pass. For example, I want to add an apiKey : &apiKey=tiger http://mywebsite.com/oneapi?field=22 ---> ...
2
votes
2answers
113 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
56 views

nginx + fast-cgi - how to make phpmyadmin work

i've configured my nginx server + php. everything works fine, except phpmyadmin. i googled a lot and found some alias tricks, but they didn't work to me. lets see that works great location ...
0
votes
0answers
33 views

Lazily serving Django static content with NGINX

Let's say I've got Django code rooted in /var/my_app. I've got a MEDIA_ROOT configured at /var/my_app/files, and MEDIA_URL is /var/my_app/files at /files. Serving these files through UWSGI (or ...
0
votes
0answers
16 views

Serving two Rails application (which reside in different servers) from one Nginx Server

I am new to Nginx and i have following scenarios: 1. I have two staging servers, Where staging1 has one Rails application & Nginx Installed. 2. Staging2 has another rails application & Nginx ...
0
votes
0answers
21 views

Wordpress on Heroku w/ nginx: how to URL_REWRITE

I have done a wordpress-on-heroku set up, which is working great. It is based on https://github.com/mchung/heroku-buildpack-wordpress and uses nginx. I am trying to Change the visible url to ...
0
votes
1answer
23 views

how to purge nginx cache which vary by user agent

a page has tow cache. one for pc web browser, another for mobile browser. nginx can do this perfect. follow is part of nginx conf content: map $http_user_agent $device_type { default 'pc'; ...
0
votes
2answers
19 views

Basic Nginx rewrites

What would be the best equivalent to this Apache2 rewrite in nginx? RewriteRule ^programmes/([A-Za-z0-9])? /index.php/programmes/?alpha=$1 [QSA,L] I've tried the following but it doesn't seem ...
0
votes
0answers
19 views

Prevent Wordpress redirecting URL of page set as homepage, to base URL?

I have a page "url.com/featured/" set as the homepage on Wordpress. For some reason its causing redirect bugs in IE with a pop up jQuery script. To fix this I was going to redirect IE users to the ...
0
votes
0answers
21 views

Phusion Passenger not able to find modified gems

I did some modifications in linkedin gem, in development enviroment its working good. In production mode Phusion Passenger not able to find modified gem, getting following error. Error message: ...
0
votes
1answer
31 views

How to disable subdomains in my vps server?

Hello, I have a vps server for host my website. I have little problem. But I don't know how to explain this. Here is example: My site : blabla.com I access my website with all subdomains, ...
0
votes
1answer
15 views

Best Pratices for Error and Access Log Files

I got a server which has at the moment a lot of access and error logs. I'm using Ubuntu 12.04 and Nginx. My question is what would be the best pratices to keep this files under control but not loose ...
0
votes
0answers
15 views

nginx binary files not available linux

Hi I have a requirement like that i should be able to install nginx in a machine that doesnt have internet connection so below are the approaches that i tried created a debian package from the ...
0
votes
0answers
19 views

nginx proxy_passing to Apache w/ Passenger running Ruby-Application returns ActionController::RoutingError (No route matches /subdirectory):

i am currently facing a problem which is imho beyond my scope. I have a server running Apache with Passenger serving a Ruby-Application in Production mode. DocumentRoot of the server is set to ...
0
votes
3answers
21 views

Location and document path in nginx

This is my nginx configuration file: server { listen 80; server_name localhost; location / { root d:/www; index index.html index.htm; } location ...
0
votes
1answer
39 views

Nginx block POST for certain countries

I have a reverse proxy nginx to tomcat. My goal is to ban total access to certain countries and ban POST for all countries except one. Total access ban for certain countries can be achieved via ...
0
votes
2answers
66 views

403 forbidden - Nginx - using correct credentials

I am trying to password protect a directory on my Nginx powered site that contains things like phpMyAdmin, MemcacheMyAdmin, and more admin utilities. This directory is placed in the root of my site ...
0
votes
2answers
39 views

Upgrade Phusion Passenger without reinstalling Nginx

Is it possible to upgrade Phusion Passenger to a newer version when it is already running (with Nginx in my case)? I installed Passenger 4.0.0.rc6 using passenger-install-nginx-module. My Nginx ...
0
votes
0answers
13 views

Eliminate error messages from missing images on web server [closed]

On my web server, nginx reports many errors of web spiders trying to access images that have been deleted. [error] 17014#0: *83779 open() "*/1234.jpg" failed (2: No such file or directory) client: ...
0
votes
3answers
63 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/ { ...
0
votes
2answers
26 views

nginx rewrite nice urls with homemade CMS

I have a home-made CMS, serving a site which I inherited. I'm not really familiar with nginx rewrite rules, although I could set up tiny URLs. Here is my relevant part of the configuration: *location ...
0
votes
1answer
50 views

Why I can't put proxy_set_header inside an if clause?

With this configuration: server { listen 8080; location / { if ($http_cookie ~* "mycookie") { proxy_set_header X-Request $request; proxy_pass ...

1 2 3 4 5 99