public
Description: Video encoding made easy with AWS
Homepage: http://pandastream.com
Clone URL: git://github.com/newbamboo/panda.git
yickster (author)
Fri Oct 23 15:55:55 -0700 2009
commit  ac62f3687861b315aee4ade0707e78bc58505b2c
tree    757f0b409613f4f1cc64ca589d5ee66a9dc58995
parent  1ff6472ef24532bd9270108c0bcb06988b4e77f4
panda / panda_nginx.conf.example
100644 28 lines (21 sloc) 0.61 kb
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
worker_processes 1;
 
events {
    worker_connections 1024;
}
 
 
http {
        upload_progress proxied 1m;
 
        server {
                listen 80;
                server_name myapp.com;
                root /var/local/www/panda;
 
                location / {
                        proxy_pass http://127.0.0.1:4001;
# proxy_redirect default;
                        track_uploads proxied 30s;
                        client_max_body_size 500m;
                }
 
                location ^~ /progress {
                        report_uploads proxied;
                }
        }
}