Skip to content
This repository has been archived by the owner on Aug 21, 2019. It is now read-only.

feideconnect/simplesamlphp-module-cassandrastore

Folders and files

NameName
Last commit message
Last commit date

Latest commit

 

History

46 Commits
 
 
 
 
 
 
 
 
 
 

Repository files navigation

simplesamlphp-cassandra-store

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,