mirror of
				https://github.com/blakeblackshear/frigate.git
				synced 2025-10-27 10:52:11 +01:00 
			
		
		
		
	serve up recordings with nginx
This commit is contained in:
		
							parent
							
								
									31f7666337
								
							
						
					
					
						commit
						f869def12e
					
				@ -75,6 +75,27 @@ http {
 | 
				
			|||||||
            root /media/frigate;
 | 
					            root /media/frigate;
 | 
				
			||||||
        }
 | 
					        }
 | 
				
			||||||
 | 
					
 | 
				
			||||||
 | 
					        location /recordings/ {
 | 
				
			||||||
 | 
					            add_header 'Access-Control-Allow-Origin' "$http_origin" always;
 | 
				
			||||||
 | 
					            add_header 'Access-Control-Allow-Credentials' 'true';
 | 
				
			||||||
 | 
					            add_header 'Access-Control-Expose-Headers' 'Content-Length';
 | 
				
			||||||
 | 
					            if ($request_method = 'OPTIONS') {
 | 
				
			||||||
 | 
					                add_header 'Access-Control-Allow-Origin' "$http_origin";
 | 
				
			||||||
 | 
					                add_header 'Access-Control-Max-Age' 1728000;
 | 
				
			||||||
 | 
					                add_header 'Content-Type' 'text/plain charset=UTF-8';
 | 
				
			||||||
 | 
					                add_header 'Content-Length' 0;
 | 
				
			||||||
 | 
					                return 204;
 | 
				
			||||||
 | 
					            }
 | 
				
			||||||
 | 
					
 | 
				
			||||||
 | 
					            types {
 | 
				
			||||||
 | 
					                video/mp4 mp4;
 | 
				
			||||||
 | 
					            }
 | 
				
			||||||
 | 
					
 | 
				
			||||||
 | 
					            autoindex on;
 | 
				
			||||||
 | 
					            autoindex_format json;
 | 
				
			||||||
 | 
					            root /media/frigate;
 | 
				
			||||||
 | 
					        }
 | 
				
			||||||
 | 
					
 | 
				
			||||||
        location / {
 | 
					        location / {
 | 
				
			||||||
            proxy_pass http://frigate_api/;
 | 
					            proxy_pass http://frigate_api/;
 | 
				
			||||||
            proxy_pass_request_headers on;
 | 
					            proxy_pass_request_headers on;
 | 
				
			||||||
 | 
				
			|||||||
		Loading…
	
		Reference in New Issue
	
	Block a user