sudo vim /opt/lampp/etc/extra/httpd-xampp.conf < VirtualHost * :80 > ServerAdmin hmdlohar@gmail.com ServerName skillora.thehypertech.in ProxyRequests off < Proxy *> Order deny,allow Allow from all </ Proxy > < Location /> ProxyPass http://localhost:2080/ ProxyPassReverse http://localhost:2080/ </ Location > </VirtualHost> <VirtualHost *:443> ServerName skillora.thehypertech.in # setup the proxy <Proxy *> Order allow,deny Allow from all </Proxy> RewriteEngine On RewriteCond %{REQUEST_URI} ^/hpws [NC] RewriteCond %{QUERY_STRING} transport=websocket [NC] RewriteRule /(.*) ws://localhost:2999 [P,L] ProxyPass / http://localhost:2080/ ProxyPassReverse / http://localhost:2080...