add archive nginx.conf ignore

This commit is contained in:
deflax 2024-01-01 20:44:31 +00:00
parent b71d16a198
commit d5690ff4c5
2 changed files with 21 additions and 1 deletions

2
.gitignore vendored
View file

@ -166,4 +166,4 @@ logs/
variables.env
haproxy.cfg
mediamtx.yml
*.json
nginx.conf

View 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;
}
}
}