Files
klipper-web-control-docker/frontend/upstreams.conf.template
Dieter Schmidt 4fa14ada51 initial commit
2021-01-04 01:54:33 +01:00

12 lines
289 B
Plaintext

upstream apiserver {
#if you need to change your api port, edit it here
ip_hash;
server ${KLIPPER_HOST}:${KLIPPER_API_PORT};
}
upstream mjpgstreamer {
#if you need to change your webcam port, edit it here
ip_hash;
server ${JPEG_STREAM_HOST}:${JPEG_STREAM_PORT};
}