Gentics Portal.Node PHP API
 All Classes Namespaces Functions Variables Pages
setting.conf.php
1 <?php
2 
3 // The URL of the backend server that browser requests should be proxied to
4 $CMS_SERVERHOST = 'http://cms.portaldemo.gentics.com/';
5 
6 // The path to the proxy script on the frontend server
7 if ( !isset( $PROXYNAME ) ) $PROXYNAME = '/gcnproxy/';
8 
9 // This is needed for Gentics Content.Node to set the URL's to this proxy.
10 // You can add multiple parameters by just appending them with a &
11 $HTTP_URL_ADD_QUERY_PARAMETERS = 'proxyprefix=' . $PROXYNAME;
12 
13 // Max times to follow a HTTP redirection response to a new URL
14 $HTTP_MAX_REDIRECTS = 10;