I found this question while struggling with the same issue. The cause of the error message is that the webpage is looking for a file called WebVisuV3.bin at the root of the server, which is not properly mapped by the reverse proxy.
The solution is to add another reverse proxy instruction for the WebVisuV3.bin file. This is my configuration:
<Location/plc/>
ProxyPass http://192.168.1.89:8080/
Order allow,deny
Allow from all
ProxyPreserveHost On
</Location><Location/WebVisuV3.bin>
ProxyPass http://192.168.1.89:8080/WebVisuV3.bin
Order allow,deny
Allow from all
ProxyPreserveHost On
</Location>
Last edit: eeyrsja 2022-04-20
If you would like to refer to this comment somewhere else in this project, copy and paste the following link:
Hi,
i have a Problem with the Webvisu.
I want to output the Webvisu via a Mod_Proxy of an Apachen2 but I always get this error:
"An error happened will automatically restart"
My Apache Config:
ProxyPass /SPK207/ http://192.168.2.XX:8080/
https://WebAdress/SPK207/webvisu.htm is the Link..
Has anyone possibly experiences?
Thanks
I found this question while struggling with the same issue. The cause of the error message is that the webpage is looking for a file called WebVisuV3.bin at the root of the server, which is not properly mapped by the reverse proxy.
The solution is to add another reverse proxy instruction for the WebVisuV3.bin file. This is my configuration:
Last edit: eeyrsja 2022-04-20