Skip to content
Snippets Groups Projects
Commit 91a6cc29 authored by Stéphane Diemer's avatar Stéphane Diemer
Browse files

Fixed format.

parent 4c9b114d
No related branches found
No related tags found
No related merge requests found
......@@ -57,14 +57,14 @@ server {
location /streaming/ {
rewrite ^/streaming/(.*)$ /live/$1? break;
proxy_pass http://localhost:1935;
proxy_cache livecache;
# do not consider secure urls as new files
proxy_cache_key $scheme$proxy_host$uri;
# only one request at a time will be allowed to populate a new cache element
proxy_cache_lock on;
# show if playlist or fragment has been cached from wowza
add_header X-Cache $upstream_cache_status;
# wowza is defining expiration headers (m3u8 is 1s, ts is 3600)
proxy_cache livecache;
# do not consider secure urls as new files
proxy_cache_key $scheme$proxy_host$uri;
# only one request at a time will be allowed to populate a new cache element
proxy_cache_lock on;
# show if playlist or fragment has been cached from wowza
add_header X-Cache $upstream_cache_status;
# wowza is defining expiration headers (m3u8 is 1s, ts is 3600)
}
location / {
uwsgi_pass unix:///home/msuser/mstmp/uwsgi.sock;
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment