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
vote
2answers
51 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 ...
2
votes
1answer
169 views
+100

Cross-domain chunked uploads using CORS

I have user-submitted files that I'm trying to upload in 10mb chunks. I'm currently using raw XMLHttpRequest (and XDomainRequest) to push each individual slice (File.prototoype.slice) on the front ...
0
votes
3answers
48 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
1answer
85 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 ...
1
vote
1answer
46 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
2answers
30 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 ...