Skip to content
Snippets Groups Projects
Select Git revision
  • c39bb9376ce2a0d3b4d38cf8b9c8184a41bf6e9c
  • master default protected
  • b24
  • ll-workflow
  • alc-scindage-donnees-pj
  • FJ_LL_Tbl_Contrat
  • alc-docker-node
  • ll-apiplatform
  • php84
  • ll-rgpd
  • b23
  • alc-filtre-type-intervenant
  • ll-sans-mdb5
  • formules-ancienne-infra
  • ll-formules
  • alc-intervenant-dmep
  • ll-suppr-v_vol-s
  • b20
  • ll-postgresql
  • b23.0.1
  • b22
  • 24.8
  • 24.7
  • 24.6
  • 24.5
  • 24.4
  • 24.3
  • 24.2
  • 24.1
  • 24.0
  • 23.15
  • 24.0-beta19
  • 24.0-beta18
  • 24.0-beta17
  • 24.0-beta16
  • 24.0-beta15
  • 24.0-beta14
  • 24.0-beta13
  • 23.14
  • 24.0-beta12
  • 24.0-beta11
41 results

build-synchronisation.php

Blame
  • Code owners
    Assign users and groups as approvers for specific file changes. Learn more.
    unicaen-auth.global.php.dist 1.15 KiB
    <?php
    /**
     * UnicaenAuth Global Configuration
     *
     * If you have a ./config/autoload/ directory set up for your project, you can
     * drop this config file in it and change the values as you wish.
     */
    $settings = array(
        'bjyauthorize' => array(
            // default role for unauthenticated users
            'default_role' => false,
        ),
        /**
         * Mot de passe sésame, chiffré avec l'algo Bcrypt
         * $bcrypt = new \Zend\Crypt\Password\Bcrypt(); 
         * echo $bcrypt->create('votreMotDePasseSesame');
         */
        'sesame_password' => false,
        /**
         * Flag indiquant si l'utilisateur authenitifié avec succès via l'annuaire LDAP doit
         * être enregistré/mis à jour dans la table des utilisateurs de l'appli.
         */
        'save_ldap_user_in_database' => false,
        /**
         * Enable registration
         * Allows users to register through the website.
         * Accepted values: boolean true or false
         */
        'enable_registration' => false,
    );
    
    /**
     * You do not need to edit below this line
     */
    return array(
        'unicaen-auth' => $settings,
        'zfcuser'      => array(
            $k='enable_registration' => isset($settings[$k]) ? $settings[$k] : false,
        ),
    );