Adding missing files
Project: http://git-wip-us.apache.org/repos/asf/airavata-php-gateway/repo Commit: http://git-wip-us.apache.org/repos/asf/airavata-php-gateway/commit/01d2420d Tree: http://git-wip-us.apache.org/repos/asf/airavata-php-gateway/tree/01d2420d Diff: http://git-wip-us.apache.org/repos/asf/airavata-php-gateway/diff/01d2420d Branch: refs/heads/master Commit: 01d2420de3f349b1f6f1c6888fed089fa026149d Parents: e1a1024 Author: Supun Nakandala <[email protected]> Authored: Sat May 9 14:17:17 2015 +0530 Committer: Supun Nakandala <[email protected]> Committed: Sat May 9 14:17:17 2015 +0530 ---------------------------------------------------------------------- app/config/pga_config.php | 85 ++++++++++++++++++++++++++++++++++++++++++ 1 file changed, 85 insertions(+) ---------------------------------------------------------------------- http://git-wip-us.apache.org/repos/asf/airavata-php-gateway/blob/01d2420d/app/config/pga_config.php ---------------------------------------------------------------------- diff --git a/app/config/pga_config.php b/app/config/pga_config.php new file mode 100644 index 0000000..146b236 --- /dev/null +++ b/app/config/pga_config.php @@ -0,0 +1,85 @@ +<?php +return array( + /** + * ***************************************************************** + * These are WSO2 Identity Server Related Configurations + * ***************************************************************** + */ + + 'wsis' => [ + + /** + * Admin Role Name + */ + 'admin-role-name' => 'admin', + + /** + * Gateway user role + */ + 'gateway-admin' => 'Internal/everyone', + + /** + * Tenant admin's username + */ + 'admin-username' => '[email protected]', + + /** + * Tenant admin's password + */ + 'admin-password' => '[email protected]', + + /** + * Identity server domain + */ + 'server' => 'idp.scigap.org', + + /** + * Identity server web services endpoint + */ + 'service-url' => 'https://idp.scigap.org:7443/services/', + + /** + * Gateway domain name + */ + 'gateway-id' => 'default', + + /** + * Path to the server certificate file + */ + 'cafile-path' => app_path() . '/resources/security/idp_scigap_org.pem', + + /** + * Enable HTTPS server verification + */ + 'verify-peer' => true, + + /** + * Allow self signed server certificates + */ + 'allow-self-signed-cert' => false + ], + + + /** + * ***************************************************************** + * These are Airavata Related Configurations + * ***************************************************************** + */ + 'airavata' => [ + /** + * Airavata API server location + */ + 'airavata-server' => 'gw111.iu.xsede.org', + + /** + * Airavata API server port + */ + 'airavata-port' => '9930', + + /** + * Airavata API server thrift communication timeout + */ + 'airavata-timeout' => '1000000' + ] + +); \ No newline at end of file
