feideconnect / simplesamlphp-module-cassandrastore
Cassandra Store for SimpleSAMLphp.
Installs: 2 258
Dependents: 0
Suggesters: 0
Security: 0
Stars: 0
Watchers: 3
Forks: 0
Open Issues: 0
Type:simplesamlphp-module
Requires
- php: >=5.2
- simplesamlphp/composer-module-installer: ~1.0
This package is auto-updated.
Last update: 2019-08-21 06:52:50 UTC
README
Cassandra Store for SimpleSAMLphp
Using the session store
In config.php
'session.handler' => 'cassandrastore:CassandraStore',
Using the cassandra metadata store
In config.php
// Overridden in config.[prod/test].php
'metadata.sources' => array(
array('type' => 'flatfile'),
array('type' => 'cassandrastore:CassandraMetadataStore'),
),
'metastore.cassandra.keyspace' => $_ENV['CASSANDRA_KEYSPACE'],
'metastore.cassandra.nodes' => $_ENV['CASSANDRA_PORT_9042_TCP_ADDR'],
'metastore.cassandra.use_ssl' => false,
'metastore.cassandra.ssl_ca' => null,
'metastore.cassandra.username' => null,
'metastore.cassandra.password' => null,