Article

coolguys's picture

Placing a GMS Box behind a Firewall

Author Info

15 April 2008 - 6:21am
Submitted by: coolguys

article
Reads:

2544

Score:
0
0
 
Comments:

1

Problem

Like a lot of companies, ours is very small. For the 3 GMS users we have, we have used an old server, installed with Linux. And since it is not clear in the manual, we disabled the Linux Apache server.

Our network config is simple, with an wireless router on the internal network. Our phones can connect to this router, but since the GMS server was also on the internal network, we could not reach it from the inside.

Solution

I used my Novell 6.5 Apache server as proxy server. Here are the steps to follow:

1. Edit your httpd.conf file in sys:\apache2\

2. Remove the # before LoadModule proxy_http_module
modules/proxyhtp.nlm in order to load your http proxy module in apache upon startup.

3. Now enter the following code :

# Proxy to GMS Server
<IfModule mod_proxy.c>
ProxyRequests Off
ProxyPass /mobile/ http://<ipadress GMS server>/
ProxyPassReverse /mobile/ http:///
</IfModule>

4. Restart your Apache server on NetWare.

Done!

This is, I think, a beautiful way for GMS to work. Now you can just type:

http:///mobile/

and you have reached your GMS server !

You can also put this as the server address in your phones and in the setup of your GMS system:

'yourcompany.com' (http://yourcompany.com/mobile/)

(just like the big guys!)


Author Info

15 April 2008 - 6:21am
Submitted by: coolguys




User Comments

Nice job

Submitted by raronson on 16 April 2008 - 10:46am.

Good solution

© 2009 Novell, Inc. All Rights Reserved.