fix: rename files to their correct name

This commit is contained in:
th33xitus
2021-01-21 10:28:04 +01:00
parent 598c106c3a
commit d098eef08e
3 changed files with 2 additions and 2 deletions

13
resources/upstreams.conf Normal file
View File

@@ -0,0 +1,13 @@
# /etc/nginx/conf.d/upstreams.conf
upstream apiserver {
#edit your api port here
ip_hash;
server 127.0.0.1:7125;
}
upstream mjpgstreamer {
#edit your webcam port here
ip_hash;
server 127.0.0.1:8080;
}