This discussion has been locked.
You can no longer post new replies to this discussion. If you have a question you can start a new discussion

SUPPORT Q&A - reverse proxy setup

fvbakel - Monday, November 2, 2009 11:17 AM:

I am trying to make an installation of  Aras available via a reverse proxy.  The idea is to make Aras available on the public internet without exposing the internal servers. 

I have setup the reverse proxy configuration and browsing the metadata in Aras works fine. However, it is not possible to view the files. The client tries to access the vault server via the internal url. 

What should be done to make Aras and the vaults accessible via a reverse proxy?

 

 

 

 



bradmq - Friday, December 10, 2010 2:18 PM:

Hi,  I was wondering what you had to do to get Innovator to work behind a reverse proxy?  I am using an HTTPS proxy on the internet side but just HTTP on the Innovator server and the Innovator redirects contain HTTP instead of just being relative paths.

 

Brad



Nikul Patel - Friday, December 24, 2010 1:24 AM:

Hi Fvbakel,

Can you please give steps to set up reverse proxy?

According to my searching I found that: To setup reverse proxy  we have to configur ISA 2004. And For ISA 2004 we have to install windows server 2003.

Is there any way to setup reverse proxy in window xp or any other OS?  Please, help me.

 

Thanks,

Nikul Patel.

 



authentic - Monday, August 15, 2011 3:28 AM:

888tiger5:

To cut one's hair regularly may be a good way to look fashionable, but it is not the only way, nor is it the best way. The ghd Straighteners is the best way, to be sure. If you do not have the time to be in and out of the hair salon regularly, our ghd Australia has the best method to solve this problem. All you need are some simple and quick little tips can help you achieve. In our store, we offer you a great variety of GHD straighteners to choose from. They are all of the best quality and will serve you well. As we all know, purple is also known as the royal purple, for those who like purple, the ghd purple indulgence iv styler is a good choice. Also, the ghd precious gift set is always a perfect gift to send to our females friends and relatives on festivals. The black usually belong to the matured, so the ghd Black Limited Edition is the choice for you. The ghd Boho Chic Straighteners is also a hot selling product this season, and the Butterfly ghds is a favourite among the young cute ladies. The ladies who want to make the hair shine and glamour may be attracted by the ghd Glamour Styling Set. Also, if you are looking for a ghd salon styler to take with you on yor vacation, the ghd Mini Styler would be the best choice. This ghd IV Styler is small and light and does not occupy much space.

 



PeterSchroer - Friday, December 24, 2010 10:04 AM:

In my experience, the easiest reverse proxy server to configure is Apache.   Either Apache on Windows,  or Linux works the same.

We've installed a Linux box in the DMZ running Apache,  using HTTPS traffic out to the internet, and then HTTP traffic through a firewall tunnel to the Aras Innovator server. 

 



Nikul Patel - Monday, December 27, 2010 12:20 AM:

Hi Peter,

 

Thanks for giving me such a reply. But till I want your help: "Can you please send me the steps to configur reverse proxy in windows?"

 

Thanks,

Nikul Patel.



fvbakel - Wednesday, January 5, 2011 3:50 AM:

Hi Nikul,

This is what I did to configure our reverse proxy:

1. installed appache on windows

2. At the bottom of http.conf I added the following settings:

(replace externalservername with your public host name and replace internalservername with your internal server name)

LoadModule proxy_module modules/mod_proxy.so
LoadModule proxy_ajp_module modules/mod_proxy_ajp.so
LoadModule proxy_balancer_module modules/mod_proxy_balancer.so
LoadModule proxy_connect_module modules/mod_proxy_connect.so
LoadModule proxy_http_module modules/mod_proxy_http.so
LoadModule proxy_ftp_module modules/mod_proxy_ftp.so

NameVirtualHost *:8080

<IfModule proxy_module>

<VirtualHost *:8080>
        ServerName externalservername

        <Location /InnovatorServer>
                ProxyPass internalservername/InnovatorServer
                ProxyPassReverse internalservername/InnovatorServer
                ProxyPassReverseCookieDomain internalservername externalservername
                               
                # Allow only defined entries, deny by default
                Order Allow,Deny
                # Specify customers IP@ range(s)
                Allow from All
        </Location>      
</VirtualHost>

</IfModule>

3, you might need to make the external URL available on your vault configuration in Aras to make the files that are stored in Aras available too.

Aras is now accesable via the URL externalservername:8080/.../InnovatorServer

Good luck.

Kind regards,

Frank van Bakel