mirror of
https://github.com/dw-0/kiauh.git
synced 2025-12-14 19:14:27 +05:00
14 lines
227 B
Plaintext
14 lines
227 B
Plaintext
# /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;
|
|
}
|