Connect to Server problem

1013
1
06-04-2013 06:20 AM
JaneLebedeva
New Contributor
We have installed ArcGis Server 10.1 and proxyed to web by nginx

sample nginx configuration:

location /arcgis/rest {
                proxy_read_timeout 600;
                proxy_connect_timeout 600;
                proxy_pass      http://MYHOST/arcgis/rest;
                proxy_set_header        Host            $host:6080;
                proxy_set_header        X-Real-IP $remote_addr;
                proxy_set_header        X-Forwarded-For $proxy_add_x_forwarded_for;
        }

        location /ArcGIS/rest/ {
                proxy_read_timeout 600;
                proxy_connect_timeout 600;
                proxy_pass      http://MYHOST/ArcGIS/rest;
                proxy_set_header        Host            $host:6080;
                proxy_set_header        X-Real-IP $remote_addr;
                proxy_set_header        X-Forwarded-For $proxy_add_x_forwarded_for;
        }

I cant see services if i connect to ArcGis Server using ArcCatalog 10.1 from web.
But all works fine if i connect directly to ArcGis Server using ArcCatalog 10.1.

How to resolve this?
0 Kudos
1 Reply
BubbaHey
Occasional Contributor III
What operating system?  In 10.1 you don't need a reverse proxy, just use web adaptor. But if you already have one in place and need to use, then see the following:

HowTo:  Set up a reverse proxy with ArcGIS 10.1 for Server on IIS ARR with SSL
http://support.esri.com/en/knowledgebase/techarticles/detail/40694

(assuming windows)

For information on the Web Adaptor, see:

About the ArcGIS Web Adaptor
http://resources.arcgis.com/en/help/main/10.1/index.html#//01540000028p000000
0 Kudos