This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
@-moz-document domain("www.tchap.gouv.fr") { | |
body { | |
font-family: 'Calibri' !important; | |
background-color: #272822; | |
} | |
.dark-panel { | |
background-color: #272822; | |
} |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
sf4ldap: | |
command: [--copy-service] | |
image: osixia/openldap:1.3.0 | |
volumes: | |
- ./docker/ldap/sf4app.schema:/container/service/slapd/assets/config/bootstrap/schema/sf4app.schema | |
- ./docker/ldap/people.ldif:/container/service/slapd/assets/config/bootstrap/ldif/custom/people.ldif | |
ports: | |
- "389:389" | |
- "636:636" | |
expose: |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
dn: ou=People,dc=sf4app,dc=org | |
ou: People | |
objectClass: organizationalUnit | |
dn: cn=user1,ou=People,dc=sf4app,dc=org | |
myadditionnalAttr2: Value2 | |
myadditionnalAttr: Value1 | |
sn: My User1 | |
mail: [email protected] | |
cn: user1 |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
sf4ldap: | |
image: osixia/openldap:1.3.0 | |
ports: | |
- "389:389" | |
- "636:636" | |
expose: | |
- 389 | |
- 636 | |
environment: | |
- LDAP_ADMIN_PASSWORD=myadminpasswd |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
<?php | |
namespace MyApp\DataFixtures; | |
use Doctrine\Bundle\FixturesBundle\Fixture; | |
use Doctrine\Persistence\ObjectManager; | |
use Symfony\Component\Ldap\Entry; | |
use Symfony\Component\Ldap\Ldap; | |
class LdapUserFixtures extends Fixture |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
attributetype ( 2.25.128424792425578037463837247958458780603.1 | |
NAME 'myadditionnalAttr' | |
EQUALITY caseIgnoreMatch | |
SUBSTR caseIgnoreSubstringsMatch | |
SYNTAX 1.3.6.1.4.1.1466.115.121.1.15 ) | |
attributetype ( 2.25.128424792425578037463837247958458780603.2 | |
NAME 'myadditionnalAttr2' | |
EQUALITY caseIgnoreMatch | |
SUBSTR caseIgnoreSubstringsMatch |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
sf4ldap: | |
command: [--copy-service] | |
image: osixia/openldap:1.3.0 | |
volumes: | |
- ./docker/ldap/sf4app.schema:/container/service/slapd/assets/config/bootstrap/schema/sf4app.schema | |
ports: | |
- "389:389" | |
- "636:636" | |
expose: | |
- 389 |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
<VirtualHost redmine.domaine.fr> | |
# Name virtual host à adapter | |
ServerName redmine.domaine.fr | |
DocumentRoot /appli/redmineXX/public | |
# Chemin vers mod_passenger | |
LoadModule passenger_module /usr/local/rvm/gems/ruby-2.3.3/gems/passenger-5.1.1/buildout/apache2/mod_passenger.so | |
# Configuration mod_passenger | |
<IfModule mod_passenger.c> |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
sync_type: nfs #default | |
nfs: | |
mount_options: ['nfsvers=3','vers=3','actimeo=1','rsize=8192','wsize=8192','timeo=14','rw', 'vers=3', 'tcp'] | |
linux__nfs_options: ['rw','no_subtree_check','all_squash','async'] |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
<?php | |
public function getCacheDir() | |
{ | |
if (in_array($this->environment, array('dev', 'test'))) { | |
return '/dev/shm/votre_appli/cache/' . $this->environment; | |
} | |
return parent::getCacheDir(); | |
} |
NewerOlder