mirror of
https://github.com/dw-0/kiauh.git
synced 2025-12-14 02:54:28 +05:00
13 lines
226 B
INI
13 lines
226 B
INI
# /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:8081;
|
|
} |