The relevant locations for LiveView web are:
/lvweb
/lv/client
/lv/api
/lv/streaming
Each of these locations needs to be defined in your proxy server settings. Here is an example for Apache 2.4:
<Location /lvweb >
ProxyPass http://hostname:10080/lvweb
ProxyPassReverse http://hostname:10080/lvweb
</Location>
<Location /lv/client >
ProxyPass http://hostname:10080/lv/client
ProxyPassReverse http://hostname:10080/lv/client
</Location>
<Location /lv/api >
ProxyPass http://hostname:10080/lv/api
ProxyPassReverse http://hostname:10080/lv/api
</Location>
<Location /lv/streaming >
ProxyPass ws://hostname:10080/lv/streaming
ProxyPassReverse ws://hostname:10080/lv/streaming
</Location>
The following Apache modules are also required:
proxy_html_module
proxy_http_module
proxy_wstunnel_module