On Mon, Feb 24, 2014 at 5:21 PM, Louis Cordier wrote:
> When I connect to production.example.com/static/ I get served the files
> from capture.example.com/static/.
>
You can ignore this part, looks like browser caching.
___
nginx mailing list
nginx@ngi
I am using nginx/1.1.19 (Ubuntu 12.04.3).
I have 3 reverse proxies setup, like so:
server {
listen 80;
server_name ebatch.example.com;
client_max_body_size 20m;
location / {
proxy_pass http://127.0.0.1:8000/;
include /etc/nginx/proxy.conf;
}
location /st