|
@@ -0,0 +1,75 @@
|
|
|
+worker_processes 1;
|
|
|
+
|
|
|
+error_log /var/log/nginx/error.log warn;
|
|
|
+pid /var/run/nginx.pid;
|
|
|
+
|
|
|
+events {
|
|
|
+ worker_connections 1024;
|
|
|
+}
|
|
|
+
|
|
|
+http {
|
|
|
+ include /etc/nginx/mime.types;
|
|
|
+ default_type application/octet-stream;
|
|
|
+
|
|
|
+ log_format main '$remote_addr - $remote_user [$time_local] "$request" '
|
|
|
+ '$status $body_bytes_sent "$http_referer" '
|
|
|
+ '"$http_user_agent" "$http_x_forwarded_for"';
|
|
|
+
|
|
|
+ access_log /var/log/nginx/access.log main;
|
|
|
+
|
|
|
+ sendfile on;
|
|
|
+ client_max_body_size 50M;
|
|
|
+ #tcp_nopush on;
|
|
|
+
|
|
|
+ keepalive_timeout 65;
|
|
|
+
|
|
|
+ #gzip on;
|
|
|
+
|
|
|
+ server {
|
|
|
+ listen 80;
|
|
|
+
|
|
|
+ location /stream/ {
|
|
|
+ add_header 'Cache-Control' 'no-cache';
|
|
|
+ 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 {
|
|
|
+ application/dash+xml mpd;
|
|
|
+ application/vnd.apple.mpegurl m3u8;
|
|
|
+ video/mp2t ts;
|
|
|
+ image/jpeg jpg;
|
|
|
+ }
|
|
|
+
|
|
|
+ root /tmp;
|
|
|
+ }
|
|
|
+
|
|
|
+ location /frigate/ {
|
|
|
+ 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;
|
|
|
+ image/jpeg jpg;
|
|
|
+ }
|
|
|
+
|
|
|
+ autoindex on;
|
|
|
+ root /media;
|
|
|
+ }
|
|
|
+ }
|
|
|
+}
|