Security Configuration

URL:
https://<root>/security/config
Methods:
GET
Required Capability:
Access allowed with any authorized privilege
Version Introduced:
10.1

Description

The config resource returns the currently active security configuration. A security configuration involves the following pieces of information, outlined in the Security configuration properties table.

Request parameters

ParameterDetails

f

The response format. The default response format is html.

Values: html | json | pjson

Security configuration properties

PropertyDetails

allowedAdminAccessIPs

A comma separated list of client machine IP addresses that are allowed access to ArcGIS Server. This can be used as an additional security measure to prevent unauthorized access to the site.

allowDirectAccess

A Boolean that indicates whether a user with administrator privileges can access the server through port 6080. If true, all users with administrative access can access the Administrator Directory and ArcGIS Server Manager through port 6080. If false, users in the identity store cannot access the server through port 6080; users must access the site through ArcGIS Web Adaptor. The default value is true.

Before disabling administrative access on port 6080, ArcGIS Server must be configured to use web tier authentication (WEB_ADAPTOR) and at least one user in the identity store must have administrator privileges to the site. The primary site administrator account can administer the site through port 6080.

To fully disable access on port 6080, you can optionally disable the primary site administrator account. If ArcGIS Server Manager becomes unavailable or the web server cannot authenticate users who have administrator privileges, you cannot administer the site. To recover this site, re-enable the primary site administrator account and connect to the site through port 6080 with this account.

Values: true | false

authenticationMode

Specifies the authentication mode used by ArcGIS Server. When ArcGIS Server is federated with Portal for ArcGIS, this property can be included and set to ARCGIS_PORTAL_TOKEN. The default value is ARCGIS_TOKEN.

Values: ARCGIS_TOKEN | ARCGIS_PORTAL_TOKEN | WEB_ADAPTOR_AUTHENTICATION

authenticationTier

Specifies the tier at which requests to access GIS services will be authenticated. It is recommended that you do not modify these values using the Administrator Directory. Instead, use ArcGIS Server Manager to configure web tier authentication or use the Portal for ArcGIS website to federate ArcGIS Server with your portal.

Values: WEB_ADAPTOR | GIS_SERVER | ARCGIS_PORTAL

allowInternetCORSAccess

Introduced at 10.9.1. A Boolean that controls the value of the Access-Control-Allow-Private-Network response header in a CORS preflight request to a REST service URL. This property supports the Private Network Access web specification (previously CORS-RFC1918), which aims to restrict websites accessed over a private network from making internal cross-origin requests.

Values: true | false

HSTSEnabled

A Boolean that indicates whether HTTP Strict Transport Security (HSTS) is being used by the site. To enable this property, the Protocol property must be set to HTTPS.

Values: true | false

httpEnabled

A Boolean that indicates whether the site is accessible over HTTP.

Values: true | false

Protocol

Specifies the HTTP protocol to be used for communication to and from the ArcGIS Server site. If set to HTTP, all communication to and from the site will be over HTTP, with HTTPS communication will be unavailable. If set to HTTP_AND_HTTPS, users and clients can use either HTTP or HTTPS to connect to the site. If set to HTTPS, all communication to and from the site will be over HTTPS. Calls made using HTTP will be redirected to use HTTPS.

When an ArcGIS Server site is created, all communication to and from the site is sent over HTTP, which is not secure. This means that your credentials sent over an internal network or the Internet are not encrypted and can be intercepted. To prevent the interception of communication, it's recommended that you configure ArcGIS Server and ArcGIS Server Manager (if installed) to enforce Secure Sockets Layer (SSL). When you create a site, a warning-level message in the logs recommends that you update the communication protocol of the site to use SSL.

Values: HTTP | HTTP_AND_HTTPS | HTTPS

roleStoreConfig

Connection information about the currently active role store.

Example
Use dark colors for code blocksCopy
1
2
3
4
"roleStoreConfig": {
  "type": "PORTAL",
  "properties": {}
}

securityEnabled

A Boolean that indicates whether security is enabled for a GIS service. The default value is true.

Values: true | false

sslEnabled

A Boolean that indicates whether the site is accessible over HTTPS (SSL). The default value is false.

Values: true | false

userStoreConfig

Connection information about the currently active user store.

Example
Use dark colors for code blocksCopy
1
2
3
4
"userStoreConfig": {
  "type": "PORTAL",
  "properties": {}
}

virtualDirsSecurityEnabled

A Boolean that indicates whether the server's virtual directories are secure and require authentication. When this property is set to true, accessing the content of secured services in the arcgisoutput, arcgisjobs, and arcgisinput directories over HTTP will require user authentication. These same permissions are applied to the server directories associated with the service. If the service is publicly available, the directories are also publicly available. The default value is false.

Values: true | false

portalProperties

The properties used when federating ArcGIS Server with Portal for ArcGIS. See Portal properties for more information.

Portal properties

PropertyDetails

portalMode

The portal mode. This must be ARCGIS_PORTAL_FEDERATION.

Example
Use dark colors for code blocksCopy
1
"portalMode": "ARCGIS_PORTAL_FEDERATION"

portalSecretKey

The key obtained after federating ArcGIS Server with Portal for ArcGIS.

Example
Use dark colors for code blocksCopy
1
"portalSecretKey": "12a34b56c78d90ef09e87d65c43b21a"

portalURL

The URL of Portal for ArcGIS in the following format:

Example
Use dark colors for code blocksCopy
1
"portalUrl": "https://machine.domain.com/webadaptor"

privatePortalUrl

The internal URL of Portal for ArcGIS is in the following format:

Example
Use dark colors for code blocksCopy
1
"privatePortalUrl": "https://machine.domain.com:7443/arcgis"

serverId

The ID of the server federated with the portal.

Example
Use dark colors for code blocksCopy
1
"serverId": "pn04lWxDPEh1vLR6"

serverURL

The external URL of the server federated with the portal in the following format:

Example
Use dark colors for code blocksCopy
1
"serverUrl": "https://machine.domain.com/webadaptor"

Example usage

The following is a sample request URL used to access the config resource:

Use dark colors for code blocksCopy
1
https://machine.domain.com/webadaptor/admin/security/config?f=pjson

JSON Response syntax

Use dark colors for code blocksCopy
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
{
  "securityEnabled": <true|false>,
  "authenticationMode": "<Authentication Mode>",
  "authenticationTier": "<Authentication Tier>",
  "userStoreConfig": <UserStore>,
  "roleStoreConfig": <RoleStore>,
  "sslEnabled": <true|false>,
  "HSTSEnabled": <true|false>,
  "httpsProtocols": "<HTTPS protocols>",
  "cipherSuites": "<cipher suite list>",
  "httpEnabled": <true|false>,
  "virtualDirsSecurityEnabled": <true|false>,
  "allowInternetCORSAccess": <true|false>,
    "portalProperties": {
    "portalUrl": "<Portal URL>",
    "portalSecretKey": "<Portal Secret Key>",
    "portalMode": "ARCGIS_PORTAL_FEDERATION",
    "serverId": <ServerID>,
    "serverUrl": <ServerURL>,
    "token": <token>,
    "referer": <referer>
  },
  "allowDirectAccess": <true|false>,
  "Protocol": "<HTTP>|<HTTP_AND_HTTPS>|<HTTPS>",
  "allowedAdminAccessIPs": "<Comma separated list of allowed IP addresses>",
  "serverRole": "<Assigned server role>",
  "serverFunction": "<Server functions>"
}

JSON Response example

Use dark colors for code blocksCopy
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
{
  "securityEnabled": true,
  "authenticationMode": "ARCGIS_PORTAL_TOKEN",
  "authenticationTier": "ARCGIS_PORTAL",
  "userStoreConfig": {
    "type": "PORTAL",
    "properties": {}
  },
  "roleStoreConfig": {
    "type": "PORTAL",
    "properties": {}
  },
  "sslEnabled": true,
  "HSTSEnabled": false,
  "httpsProtocols": "TLSv1.2,TLSv1.3",
  "cipherSuites": "TLS_ECDHE_RSA_WITH_AES_256_GCM_SHA384, TLS_ECDHE_RSA_WITH_AES_256_CBC_SHA384, TLS_ECDHE_RSA_WITH_AES_256_CBC_SHA, TLS_RSA_WITH_AES_256_GCM_SHA384, TLS_RSA_WITH_AES_256_CBC_SHA256, TLS_RSA_WITH_AES_256_CBC_SHA, TLS_ECDHE_RSA_WITH_AES_128_GCM_SHA256, TLS_ECDHE_RSA_WITH_AES_128_CBC_SHA256, TLS_ECDHE_RSA_WITH_AES_128_CBC_SHA, TLS_RSA_WITH_AES_128_GCM_SHA256, TLS_RSA_WITH_AES_128_CBC_SHA256, TLS_RSA_WITH_AES_128_CBC_SHA, TLS_AES_256_GCM_SHA384, TLS_AES_128_GCM_SHA256, TLS_ECDHE_ECDSA_WITH_AES_256_GCM_SHA384, TLS_ECDHE_ECDSA_WITH_AES_256_CBC_SHA384, TLS_ECDHE_ECDSA_WITH_AES_256_CBC_SHA, TLS_ECDHE_ECDSA_WITH_AES_128_GCM_SHA256, TLS_ECDHE_ECDSA_WITH_AES_128_CBC_SHA256, TLS_ECDHE_ECDSA_WITH_AES_128_CBC_SHA",
  "httpEnabled": false,
  "virtualDirsSecurityEnabled": false,
  "allowInternetCORSAccess": true,
  "portalProperties": {
    "portalUrl": "https://machine.domain.com/webadaptor",
    "privatePortalUrl": "https://MACHINE.DOMAIN.COM:7443/arcgis",
    "portalSecretKey": "ab11b803c57b4ef983d910d5dcfe9fb1",
    "portalMode": "ARCGIS_PORTAL_FEDERATION",
    "serverId": "llllrc3XWJS40Gto",
    "serverUrl": "https://machine.domain.com/webadaptor",
    "webgisServerTrustKey": "e4gOXn7Ah1+mx9I5nDpP1497x7EWvLhRqfLzUMY9Vq4=",
    "privateHostingServerUrl": "https://machine.domain.com:6443/arcgis"
  },
  "allowDirectAccess": true,
  "serverRole": "HOSTING_SERVER",
  "serverFunction": "GeoAnalytics,WorkflowManager"
}

Your browser is no longer supported. Please upgrade your browser for the best experience. See our browser deprecation post for more details.