public
Fork of newbamboo/panda
Description: Video encoding made easy with AWS
Homepage: http://pandastream.com
Clone URL: git://github.com/reddavis/panda.git
commit  ce010bcdbe8796ae14acdcf68ba253ff98cbeb66
tree    1368862e09368021d7ea7cce77d4433a3d6bdd69
parent  d3a2e8c76c66e2553e22d55fd7e93ab5524762d4
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;
                }
        }
}