Skip To Content

Setting advanced portal options

In this topic

You can customize the behavior of Portal for ArcGIS using a configuration file. Properties you can set include whether certain links and buttons are shown on the website, for example, media links or a button that allows anonymous users to create portal accounts. You may want to do this if you're configuring a disconnected deployment or modifying the portal's behavior to match the requirements of your organization; for example, the following organizations might configure their portal in this way:

  • Defense Industry/Federal Government—Configure the entire portal to use local resources, add security banners, disable anonymous users from creating accounts, and disable blogs and sharing to social media.
  • Local Government—Add security banners and set the extent service to use a local projection.
  • Commercial—Enable blogs and sharing to social media.

The configuration file is located in <Portal for ArcGIS installation directory>\customizations\<version number>\webapps\arcgis#home\js\arcgisonline\config.js. Make a backup copy of this file before modifying it.

After you modify the properties in the file, restart your portal to apply your edits and clear your browser's cache (including cookies) to see the changes in the portal website.

Note:

When you install a patch, system update, or upgrade your portal to a newer version, the config.js file is preserved in the customizations directory, and the properties you modified in the file persist. As a safeguard, keep a copy of the config.js file in case the customizations directory is accidentally deleted by a member of your organization.

The configuration file contains other code that should not be modified. When you open the configuration file, browse to the section of the file that contains modifiable properties. Some of the properties in the portal configuration file are self-explanatory, but some selected properties are described in more detail below. The properties are listed in alphabetical order.

Properties in the configuration file

  • addContentSecurityText—If not null, the text specified shows in the Search for layers to add dialog box when searching a GIS server to add layers to the map. The dialog box displays every time the user executes a search on a GIS server. The text can warn users about security constraints related to the content, for example, "For internal use only; do not distribute". The default is null.

  • bitlyUrl—If not null, short URLs for Facebook, Twitter, and URL map links display on the item details dialog box. If null, Twitter and Facebook links will not be available. To use this property, specify the full Bitly URL login and apiKey, such as http://api.bit.ly/v3/shorten?login=<loginName>&apiKey=<key>. The default is null.

  • bitlyUrlSSL—If SSL is required, specify the full Bitly URL login and apiKey in this property, such as http://api.bit.ly/v3/shorten?login=<loginName>&apiKey=<key>. The default is null.

  • classificationBanner—Indicates if a security banner shows at the top and bottom of every page in the application. The default is false. To display a security banner, replace the classificationBanner:false line with code that defines your banner. The following is an example:

    classificationBanner : {
        "text" : "TOP SECRET",
        "color":[
          255,
          255,
          255,
          255
        ],
        "font":{
          "decoration":"none",
          "family":"Portable User Interface",
          "size":16,
          "style":"normal",
          "weight":"bold"
        },
        "height" : 5,
        "backgroundColor":[
          155,
          0,
          0,
          255
        ]
      },

  • extentService—The service used to update or set the extent of a web map item in the Set Extent dialog box in the portal website. The service must use the WGS 1984 geographic coordinate system with well-known ID (WKID) 4326. The default is http://server.arcgisonline.com/ArcGIS/rest/services/ESRI_StreetMap_World_2D/MapServer.

  • footerLinks—You can use this property to define links displayed on all page footers. The following example displays links to several pages—My Organization, Terms of Use, Privacy, Contact Us, and Report Abuse:

    footerLinks: [{
          title: "My Organization",
          url: "http://www.myorganiz.com"
        }, {
          title: "Terms of Use",
          url: "http://www.myorganiz.com/legal/licensing/termsofuse.html"                        
        }, {
          title: "Privacy",
          url: "http://www.myorganiz.com/legal/privacy.html"                                     
        }, {
          title: "Contact Us",
          email: "feedback@myorganiz.com",
          type: "contactUs"
        }, {
          title: "Report Abuse",
          email: "feedback@myorganiz.com",
          type: "reportAbuse"
        }],

  • gcsBasemapService—The service to be used as the basemap for OGC WMS services that do not support the Web Mercator coordinate system. The default is http://services.arcgisonline.com/ArcGIS/rest/services/ESRI_Imagery_World_2D/MapServer.

  • longTokenExpiration—When a user signs in to the portal website and selects Keep me signed in, a token generates with a default expiration time of 20,160 minutes (14 days). If the user does not select the Keep me signed in option when signing in, the tokenExpiration time overrides the time defined in this property.

  • restrictOrganizationPageToAdmin—Indicates whether the My Organization page is visible to members with user and publisher privileges to the portal website. The default is false, meaning the My Organization page is visible to all members of the portal. To hide the My Organization page from users and publishers, specify as true.

  • showSocialMediaLinks—Indicates whether or not Facebook and Twitter links display on the item details dialog box. The default is false, meaning that the links do not display. To enable the links, specify this property as true, and specify the bitlyURL and bitlyURLSSL properties with the full Bitly URL login and apiKey, for example, "http://api.bit.ly/v3/shorten?login=<loginName>&apiKey=<key>",.

  • signInHelp—Use this property to override the page opened by the Need help signing in? link on the sign-in page (signin.html). The default is null, meaning that the default page (troubleshoot.html) is displayed by the link. To specify your own page, define the URL to the page that the link opens, for example, signInHelp: "http://machine.domain.com/mysignin.html",.

  • tokenExpiration—When a user signs in to the portal website, a token generates with a default expiration time of 120 minutes (two hours). If the user selects the Keep me signed in option when signing in, the longTokenExpiration time overrides the time defined in this property.

  • webSearchEnabled—Indicates whether searches on the web (for example, Google searches) are permitted on the content in your portal. The default is true. To disable web searches on your portal's content, specify as false.