21 lines
320 B
Nginx Configuration File
21 lines
320 B
Nginx Configuration File
|
events {
|
||
|
|
||
|
}
|
||
|
|
||
|
http {
|
||
|
error_log /etc/nginx/error_log.log warn;
|
||
|
client_max_body_size 20m;
|
||
|
|
||
|
proxy_cache_path /etc/nginx/cache keys_zone=one:500m max_size=1000m;
|
||
|
|
||
|
|
||
|
server {
|
||
|
server_name vod.deflax.net;
|
||
|
root /recordings;
|
||
|
|
||
|
location /live/ {
|
||
|
autoindex on;
|
||
|
}
|
||
|
}
|
||
|
}
|