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
2 views

Multiple WordPress Installations with Nginx

I am trying to use a single site config file with nginx to server an arbitrary number of WordPress installations in sub-folders, but can't get pretty permalinks to work at all. + root + ...
0
votes
0answers
8 views

Nginx always reset my connection

I have installed nginx on mac through brew, but it always reset my connection when i send request by browser. I try to compile the debug version and set loglevel to debug, but there is nothing useful ...
1
vote
1answer
17 views

NGINX and PHP-FPM is downloading index.php instead of processing it

I recently installed NGINX and PHP-FPM on a Centos6 server. I'm able to view other php pages on my site, but for some reason my index.php file gets downloaded rather than processed like a normal php ...
0
votes
0answers
23 views

nginx.conf does not allow me to use ~ at location

I installed nginx 1.4.1 at CentOS 5.9, But I cannot uncomment proxy settings. I reinstalled it, but nginx -t say ok only if I don't use like location ~ \.php${ {PROXY_SETTINGS} } and even if I ...
-3
votes
0answers
33 views

Which server is best, apache or nginx? [closed]

I am developing an eCommerce application in PHP. Which server i want to use host my application, NGINX or APACHE ? . Consider in all aspects, security, speed and load balancing.
0
votes
1answer
13 views

nginx as a proxy for NodeJS+socket.io: client not receiving notifications

I have nginx configured to proxy websockets like this: location /socket.io { proxy_pass http://localhost:8000; proxy_http_version 1.1; proxy_set_header Upgrade $http_upgrade; proxy_set_header ...
0
votes
0answers
12 views

Nginx and rewrite redirection issue

I need some help with this issue. When i type a search on my site, with a single word the url is redirecting correctly but if i search 2 or more words the url is not rewrited and this is because my ...
0
votes
1answer
11 views

504 Gateway Time-out

I am getting this "nginx 504 gateway timeout" when accessing my website, even when low traffic, server is 1000mbit, 36GB RAM and 2(Intel Xeon 2556). All traffic going to my site comes through a proxy ...
0
votes
1answer
11 views

Net::HTTP Timeout with Sinatra App

I wrote a simple sinatra service to transfer images from sites to Amazon s3. It reads the images into memory instead of storing the files. The application works great locally but it timeouts when ...
0
votes
2answers
15 views

How can I setup a Gunicorn sever with a Nginx Proxy Buffering server over Amazon EC2?

My Django app is hosted up on Amazon EC2. Gunicorn runs on the same machine and serves all the content I have. I have two of these machines (easy to scale horizontally) and I have a ELB sitting in ...
2
votes
2answers
28 views

perl catalyst www to non www redirect

I have a hosting platform that hosts multiple clients' websites. It is a Catalyst app load balanced behind nginx. I would like each client to have the ability to choose whether they want to have their ...
0
votes
1answer
14 views

Removing index.php from Magento URL While Using Nginx

My current setup is running Ubuntu 12.04 LTS, Nginx 1.4.1, with Magento 1.7.0.2. Earlier today, I set up a basic Magento store. I haven't installed any modules and I haven't made any configuration ...
2
votes
1answer
26 views

Removing port from nginx redirect

I'm having an issue where some redirects on a website have the proxy-pass port included, rendering them useless. My configuration is as follows: Physical server 1: server { server_name ...
0
votes
0answers
6 views

nginx try_files with ruby on rails cached pages

I've noticed that nginx is not serving the cached index.html page on the root domain. ex.) http://dev.website/ should serve up /rails_app/public/cache/index.html, but defaults to rails app serving ...
0
votes
1answer
32 views

nginx endless redirection (not the SSL bug)

EDIT: The Problem is, and I can not figure it out exactly is that I use a subdomain, I tried just using my TLD (pure) my.de for the config and voila it worked out of the box. Anyone ideas on how to ...
0
votes
0answers
26 views

Nginx conf not working all of a sudden. What is the proper way to write this?

First of all, let me state that I am brand new to nginx and I have not yet gotten to that point where I am able to diagnose issues on my own. So I am hoping one of you guys will be able to help me ...
0
votes
0answers
6 views

Nginx and Haproxy listening on same port for different hosts

Is it possible to have 2 different applications (nginx & haproxy) listen on the same port for different host names? i.e: haproxy: frontend incoming_http bind www.freinds.com:80 nginx: ...
0
votes
2answers
12 views

gevent-socketio nginx uwsgi not working together on development server

I am running a django project that uses gevent-socketio. For some reason on my development server, all my websockets requests are returning a 101 pending message at which socketio will start cycling ...
0
votes
1answer
22 views

Using regex in nginx location block for variables

Using nginx and CodeIgniter, I have a location block in my server config that handles the routing for my project like this: location /beta/ { try_files $uri $uri/ /beta/index.php; } This works ...
0
votes
0answers
13 views

Change default Xamarin Studio's web server

Is it possible to change Xamarin Studio's web server from XPS to another like Nginx or Apache with mod_mono? I did not find any option that looks like the one Visual Studio has where you have the ...
0
votes
0answers
17 views

Magento - Bank transfer option redirecting to cart

We have recently upgraded server our website is hosted on to Plesk 11 running on Nginx. Since doing so when selecting to pay via bank transfer the customer is redirected to the cart upon pressing the ...
0
votes
1answer
16 views

NGINX error log format documentation

I want to parse NGINX error logs. However, there seems to be no documentation at all, concerning the used log format. While the meaning of some fields like the data is pretty obvious, some are not at ...
0
votes
0answers
11 views

Show a 404 for not-found subdomains instead of showing root domain's content [migrated]

I'm using nginx. What I'm trying to achieve: A root domain domain.com which gets contents from /var/www/domain.com A subdomain sub.domain.com which gets contents from /var/www/sub.domain.com Any ...
0
votes
0answers
8 views

Setting expires for dokuwiki lib directory on nginx stops processing .php files

I'm trying install DocuWiki script on nginx web server. Documentation says that I need to put following directive at nginx config file: location ^~ /lib/ { expires 30d; } When I try to add this, ...
0
votes
0answers
14 views

turning off log for script generated files on nginx stops file generation

I'm trying to turn off log for robots.txt file on nginx which is generated by Wordpress like: location = /robots.txt { access_log off; log_not_found off; } And i'm getting 404 error when try to ...
0
votes
0answers
17 views

Forward nginx http post request to rabbitmq

Here our data flow is nginx as front-end server, and proxy post data to backend server. But currently large request cost http response long time. An solution is put http post request to rabbitmq and ...
0
votes
1answer
33 views

where nginx set the $_SERVER['HOSTNAME'] 's value?

I can get the $_SERVER['HOSTNAME'] value in PHP CLI, but in nginx , The value I get is empty, phpinfo() shows "no value". How can I get the value in nginx?
0
votes
2answers
59 views

uWSGI error: "Error opening file for reading: Permission denied'

I am experiencing the exact same error described here: uWSGI Server log…permission denied to read file...which file? uWSGI keeps throwing me "Error opening file for reading: Permission denied" in ...
-1
votes
2answers
16 views

Nginx clean install 403 error [closed]

I'm trying to install nginx on an Ubuntu 12.04 server where I had apache running first. I shut that down first, than installed nginx. I'm getting a 403 error on files that do exist and a 404 on files ...
1
vote
1answer
14 views

Nginx + passenger segmentation fault error

I'm experiencing a segmentation fault error on an nginx server handling a rails 3.2 application. I tried to update all the application gems, tried to update nginx to the latest version but without ...
0
votes
0answers
15 views

Unicorn reloads Rails in 'test' environment, does not kill workers

I'm setting up a Rails app using Nginx/Unicorn. I've been able to get it to start, but I'm not able to reload the code. When I run 'unicorn reload', everything seems to start fine, and I see this ...
0
votes
0answers
22 views

nginx; return response code if a file exists by using try_files only

Since IfIsEvil I've been trying to set up a configuration using the directive try_files only so that a maintenance page is displayed together with the response code 503, for any URI without exception, ...
0
votes
1answer
11 views

Nginx default content-type

I would like NGINX send the content-type application/xml for all response of a location: My configuration is base on the documentation http://wiki.nginx.org/HttpCoreModule#types : server { ...
1
vote
0answers
48 views

Django not writing errors to log files in production

So i am trying do deply my django app + nginx (fastcgi). I am trying to write all my normal django output (that i usually get when developing the app) but in production since i dont see the output, i ...
2
votes
0answers
26 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 ...
0
votes
0answers
8 views

nginx as reserve proxy of apache, error page issue

i typed following in my nginx vhost: server { ... error_page 403 /403.php; location ~ \.(php)${ proxy_pass ...; } } then when i try to browse a directory which should ...
0
votes
0answers
21 views

nginx error while trying to serve django page

I'm new at server setup. I'm trying to set up an EC2 instance to serve a Django app through nginx. I'm able to run and connect to the Django app using python managy.py runserver 0.0.0.0:8000 ...
-1
votes
0answers
10 views

How can I upgrade php5.3 to 5.4 with macports for nginx [closed]

I'm looking for a simple way to upgrade from php5.3 to php5.4 using macports. Current environment is using nginx. This is not a new install but rather an upgrade, any suggestions?
0
votes
0answers
5 views

Rails 3.2 Nginx Unicorn Basic Authentification

I am trying to get Basic Authentification to work with Rails 3.2 nginx and Unicorn The configuration works for hosting my site. I used the Rails Basic Authentification in the Controller but i have to ...
0
votes
0answers
6 views

nginx (1.4.0) + socketio 502 cannot find & keeps switching protocol

Am pretty stuck at this - we've got this socket.io and nginx setup, but it seems that the server just can't run websockets and keeps switching to xhr-polling and jsonp-polling and can't find those ...
1
vote
0answers
27 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 ...
1
vote
1answer
36 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
8 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
27 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
34 views

nginx reverse proxy to backend running on localhost

EDIT: It turns out that the my setup below actually works. Previously, I was getting redirections to port 36000 but it was due to some configuration settings on my backend application that was causing ...
0
votes
0answers
20 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
23 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
25 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
29 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 ...
2
votes
3answers
44 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 2 3 4 5 99