Web Url in Subdirectory rbdev
    Web Url in Subdirectory Synametrics Support

From: rbdev
Date: 4/15/18 9:05 AM
Topic: Web Url in Subdirectory
Type: Installation
Post a follow up

Hi all,

I'm trying to setup Xeams admin console to run under my apache webserver using ProxyPass.

it would look like http:((myserver(Xeams

How do I setup Xeams to work this way?

Cheers

Top

From: Synametrics Support
Date: 4/16/18 8:17 AM
Topic: Web Url in Subdirectory
Type: Installation
Post a follow up

RBDev,

You can try the following steps. However, we have NOT tried this on our end and therefore, do not know if it will work. Additionally, there is a chance that JavaScripts may not work through this method, which means you may not be able to use features like Live Monitor and Live Logs.

Add the following lines in your httpd.conf file where other modules are getting loaded. It is quite possible you already have this line in your configuration file.

 LoadModule proxy_module modules/mod_proxy.so 


Then, further down add the following section.

    ProxyPass /xeams http://192.168.1.20:5272
    ProxyPassReverse /xeams http://192.168.1.20:5272

Once this is done any user on the Internet should be able to type:

http://www.yourCompany.com/xeams
Top