Page 1 of 1

Pi4 on LAN - no FPS displayed

Posted: Fri May 15, 2020 3:17 pm
by fatboy
Apache running proxy for access from WAN (https).

Console shows fps, montage or single camera view does NOT!

Don't spot the variable being passed in this snippet of html source (have not looked very deep)???:

<div id="monitorState">State:&nbsp;<span id="stateValue"></span>&nbsp;-&nbsp;<span id="fpsValue"></span>&nbsp;fps</div>

apache config (in case anyone suspects apache is the issue):

<VirtualHost *:443>
ServerName pi4.tld
SSLEngine On
SSLProxyEngine On
SSLCertificateFile <the>.crt
SSLCertificateKeyFile <the>.key

ProxyRequests On
ProxyPreserveHost On
<Proxy *>
Order deny,allow
Allow from all
</Proxy>

ProxyPass /zm/ http://192.168.0.200/zm/
ProxyPassReverse /zm/ http://192.168.0.200/zm/
ProxyPass / http://192.168.0.200/zm/
ProxyPassReverse / http://192.168.0.200/zm/
</VirtualHost>

Ideas or <yeah_been_there_done_that_heres_the_fix>?

Thanks!