Software: Apache/2.4.53 (Unix) OpenSSL/1.1.1o PHP/7.4.29 mod_perl/2.0.12 Perl/v5.34.1. PHP/7.4.29 uname -a: Linux vps-2738122-x 4.15.0-213-generic #224-Ubuntu SMP Mon Jun 19 13:30:12 UTC 2023 x86_64 uid=1(daemon) gid=1(daemon) grupos=1(daemon) Safe-mode: OFF (not secure) /opt/apex_tdfonline/php/3ros/shindig/config/ drwxr-xr-x | |
| Viewing file: Select action/file-type: /*
* Licensed to the Apache Software Foundation (ASF) under one
* or more contributor license agreements. See the NOTICE file
* distributed with this work for additional information
* regarding copyright ownership. The ASF licenses this file
* to you under the Apache License, Version 2.0 (the
* "License"); you may not use this file except in compliance
* with the License. You may obtain a copy of the License at
*
* http://www.apache.org/licenses/LICENSE-2.0
*
* Unless required by applicable law or agreed to in writing,
* software distributed under the License is distributed on an
* "AS IS" BASIS, WITHOUT WARRANTIES OR CONDITIONS OF ANY
* KIND, either express or implied. See the License for the
* specific language governing permissions and limitations
* under the License.
*/
// Default container configuration. To change the configuration, you have two options:
//
// A. If you run the Java server: Create your own "myContainer.js" file and
// modify the value in web.xml.
//
// B. If you run the PHP server: Create a myContainer.js, copy the contents of container.js to it,
// change
// {"gadgets.container" : ["default"],
// to
// {"gadgets.container" : ["myContainer"],
// And make your changes that you need to myContainer.js.
// Just make sure on the iframe URL you specify &container=myContainer
// for it to use that config.
//
// All configurations will automatically inherit values from this
// config, so you only need to provide configuration for items
// that you require explicit special casing for.
//
// Please namespace your attributes using the same conventions
// as you would for javascript objects, e.g. gadgets.features
// rather than "features".
// NOTE: Please _don't_ leave trailing commas because the php json parser
// errors out on this.
// Container must be an array; this allows multiple containers
// to share configuration.
{"gadgets.container" : ["default"],
// Set of regular expressions to validate the parent parameter. This is
// necessary to support situations where you want a single container to support
// multiple possible host names (such as for localized domains, such as
// <language>.example.org. If left as null, the parent parameter will be
// ignored; otherwise, any requests that do not include a parent
// value matching this set will return a 404 error.
"gadgets.parent" : null,
// Should all gadgets be forced on to a locked domain?
"gadgets.lockedDomainRequired" : false,
// DNS domain on which gadgets should render.
"gadgets.lockedDomainSuffix" : "-a.example.com:8080",
// Various urls generated throughout the code base.
// iframeBaseUri will automatically have the host inserted
// if locked domain is enabled and the implementation supports it.
// query parameters will be added.
"gadgets.iframeBaseUri" : "/%toba_alias%/shindig/gadgets/ifr",
// jsUriTemplate will have %host% and %js% substituted.
// No locked domain special cases, but jsUriTemplate must
// never conflict with a lockedDomainSuffix.
"gadgets.jsUriTemplate" : "%toba_href%/shindig/gadgets/js/%js%",
// Callback URL. Scheme relative URL for easy switch between https/http.
"gadgets.oauthGadgetCallbackTemplate" : "//%host%/%toba_alias%/shindig/gadgets/oauthcallback",
// Use an insecure security token by default
"gadgets.securityTokenType" : "insecure",
// Config param to load Opensocial data for social
// preloads in data pipelining. %host% will be
// substituted with the current host.
"gadgets.osDataUri" : "%toba_href%/shindig/social/rpc",
// Uncomment these to switch to a secure version
//
//"gadgets.securityTokenType" : "secure",
//"gadgets.securityTokenKeyFile" : "/path/to/key/file.txt",
// This config data will be passed down to javascript. Please
// configure your object using the feature name rather than
// the javascript name.
// Only configuration for required features will be used.
// See individual feature.xml files for configuration details.
"gadgets.features" : {
"core.io" : {
// Note: /proxy is an open proxy. Be careful how you expose this!
"proxyUrl" : "%toba_href%/shindig/gadgets/proxy?refresh=%refresh%&url=%url%%rewriteMime%",
"jsonProxyUrl" : "%toba_href%/shindig/gadgets/makeRequest"
},
"views" : {
"profile" : {
"isOnlyVisible" : false,
"urlTemplate" : "%toba_href%/shindig/gadgets/profile?{var}",
"aliases": ["DASHBOARD", "default"]
},
"canvas" : {
"isOnlyVisible" : true,
"urlTemplate" : "%toba_href%/shindig/gadgets/canvas?{var}",
"aliases" : ["FULL_PAGE"]
}
},
"rpc" : {
// Path to the relay file. Automatically appended to the parent
/// parameter if it passes input validation and is not null.
// This should never be on the same host in a production environment!
// Only use this for TESTING!
"parentRelayUrl" : "/%toba_alias%/shindig/gadgets/files/container/rpc_relay.html",
// If true, this will use the legacy ifpc wire format when making rpc
// requests.
"useLegacyProtocol" : false
},
// Skin defaults
"skins" : {
"properties" : {
"BG_COLOR": "",
"BG_IMAGE": "",
"BG_POSITION": "",
"BG_REPEAT": "",
"FONT_COLOR": "",
"ANCHOR_COLOR": ""
}
},
"opensocial" : {
// Path to fetch opensocial data from
// Must be on the same domain as the gadget rendering server
"path" : "%toba_href%/shindig/social/rpc",
// Path to issue invalidate calls
"invalidatePath" : "%toba_href%/shindig/gadgets/api/rpc",
"domain" : "shindig",
"enableCaja" : false,
"supportedFields" : {
"person" : ["id", {"name" : ["familyName", "givenName", "unstructured"]}, "thumbnailUrl", "profileUrl"],
"activity" : ["id", "title"]
}
},
"osapi.services" : {
// Specifying a binding to "container.listMethods" instructs osapi to dynamicaly introspect the services
// provided by the container and delay the gadget onLoad handler until that introspection is
// complete.
// Alternatively a container can directly configure services here rather than having them
// introspected. Simply list out the available servies and omit "container.listMethods" to
// avoid the initialization delay caused by gadgets.rpc
// E.g. "gadgets.rpc" : ["activities.requestCreate", "messages.requestSend", "requestShareApp", "requestPermission"]
"gadgets.rpc" : ["container.listMethods"]
},
"osapi" : {
// The endpoints to query for available JSONRPC/REST services
"endPoints" : [ "%toba_href%/shindig/social/rpc", "%toba_href%/shindig/gadgets/api/rpc" ]
},
"osml": {
// OSML library resource. Can be set to null or the empty string to disable OSML
// for a container.
"library": "config/OSML_library.xml"
}
}}
|
:: Command execute :: | |
--[ c99shell v. 2.1 [PHP 8 Update] [02.02.2022] maintained byC99Shell Github | Generation time: 0.6475 ]-- |