Initial comit

This commit is contained in:
2022-12-07 21:40:25 -05:00
commit 924ae6ed02
4 changed files with 172 additions and 0 deletions

14
nginx/nginx.conf Normal file
View File

@@ -0,0 +1,14 @@
events {
worker_connections 1024;
}
stream {
upstream jackettweb {
server jackett:9117 fail_timeout=5s max_fails=5;
}
server {
listen 9117;
proxy_pass jackettweb;
}
}