add archive nginx.conf ignore
This commit is contained in:
parent
b71d16a198
commit
d5690ff4c5
2 changed files with 21 additions and 1 deletions
2
.gitignore
vendored
2
.gitignore
vendored
|
@ -166,4 +166,4 @@ logs/
|
|||
variables.env
|
||||
haproxy.cfg
|
||||
mediamtx.yml
|
||||
*.json
|
||||
nginx.conf
|
||||
|
|
20
config/archive/nginx.conf.dist
Normal file
20
config/archive/nginx.conf.dist
Normal file
|
@ -0,0 +1,20 @@
|
|||
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.example.com;
|
||||
root /recordings;
|
||||
|
||||
location /live/ {
|
||||
autoindex on;
|
||||
}
|
||||
}
|
||||
}
|
Loading…
Reference in a new issue