server/src/.env.example
author ymh <ymh.work@gmail.com>
Fri, 17 Nov 2017 00:06:39 +0100
changeset 556 a31f1343b913
parent 552 2c579ea45608
permissions -rw-r--r--
Correct header and footer for backend pages
Ignore whitespace changes - Everywhere: Within whitespace: At end of lines:
22
a50cbd7d702f small change in pagination and add missing .env template
ymh <ymh.work@gmail.com>
parents:
diff changeset
     1
APP_ENV=local
a50cbd7d702f small change in pagination and add missing .env template
ymh <ymh.work@gmail.com>
parents:
diff changeset
     2
APP_DEBUG=true
428
76a47f714766 add memcached configuration option, small corrections for the build process and add installDrupal.sh file to the release
ymh <ymh.work@gmail.com>
parents: 406
diff changeset
     3
# clé applicative, doit être une chaine de caractère aléatoire
22
a50cbd7d702f small change in pagination and add missing .env template
ymh <ymh.work@gmail.com>
parents:
diff changeset
     4
APP_KEY=SomeRandomString
428
76a47f714766 add memcached configuration option, small corrections for the build process and add installDrupal.sh file to the release
ymh <ymh.work@gmail.com>
parents: 406
diff changeset
     5
76a47f714766 add memcached configuration option, small corrections for the build process and add installDrupal.sh file to the release
ymh <ymh.work@gmail.com>
parents: 406
diff changeset
     6
# url de base de l'pplication
76a47f714766 add memcached configuration option, small corrections for the build process and add installDrupal.sh file to the release
ymh <ymh.work@gmail.com>
parents: 406
diff changeset
     7
APP_URL=http://corpus-parole.local/
76a47f714766 add memcached configuration option, small corrections for the build process and add installDrupal.sh file to the release
ymh <ymh.work@gmail.com>
parents: 406
diff changeset
     8
76a47f714766 add memcached configuration option, small corrections for the build process and add installDrupal.sh file to the release
ymh <ymh.work@gmail.com>
parents: 406
diff changeset
     9
# Configuration du système de log (c.f. https://laravel.com/docs/5.3/errors#configuration)
76a47f714766 add memcached configuration option, small corrections for the build process and add installDrupal.sh file to the release
ymh <ymh.work@gmail.com>
parents: 406
diff changeset
    10
# Valeurs possibles: "single", "daily", "syslog", "errorlog"
406
cf0f23803a53 upgrade elasticsearch to 5.0, upgrade ember
ymh <ymh.work@gmail.com>
parents: 405
diff changeset
    11
APP_LOG="daily"
428
76a47f714766 add memcached configuration option, small corrections for the build process and add installDrupal.sh file to the release
ymh <ymh.work@gmail.com>
parents: 406
diff changeset
    12
22
a50cbd7d702f small change in pagination and add missing .env template
ymh <ymh.work@gmail.com>
parents:
diff changeset
    13
428
76a47f714766 add memcached configuration option, small corrections for the build process and add installDrupal.sh file to the release
ymh <ymh.work@gmail.com>
parents: 406
diff changeset
    14
#configuration de la base de donnée
76a47f714766 add memcached configuration option, small corrections for the build process and add installDrupal.sh file to the release
ymh <ymh.work@gmail.com>
parents: 406
diff changeset
    15
DATABASE_DRIVER=mysql
22
a50cbd7d702f small change in pagination and add missing .env template
ymh <ymh.work@gmail.com>
parents:
diff changeset
    16
DB_HOST=localhost
a50cbd7d702f small change in pagination and add missing .env template
ymh <ymh.work@gmail.com>
parents:
diff changeset
    17
DB_DATABASE=corpus
a50cbd7d702f small change in pagination and add missing .env template
ymh <ymh.work@gmail.com>
parents:
diff changeset
    18
DB_USERNAME=corpus
a50cbd7d702f small change in pagination and add missing .env template
ymh <ymh.work@gmail.com>
parents:
diff changeset
    19
DB_PASSWORD=secret
a50cbd7d702f small change in pagination and add missing .env template
ymh <ymh.work@gmail.com>
parents:
diff changeset
    20
428
76a47f714766 add memcached configuration option, small corrections for the build process and add installDrupal.sh file to the release
ymh <ymh.work@gmail.com>
parents: 406
diff changeset
    21
# configuration du cache
22
a50cbd7d702f small change in pagination and add missing .env template
ymh <ymh.work@gmail.com>
parents:
diff changeset
    22
CACHE_DRIVER=file
428
76a47f714766 add memcached configuration option, small corrections for the build process and add installDrupal.sh file to the release
ymh <ymh.work@gmail.com>
parents: 406
diff changeset
    23
76a47f714766 add memcached configuration option, small corrections for the build process and add installDrupal.sh file to the release
ymh <ymh.work@gmail.com>
parents: 406
diff changeset
    24
# configuration memcached
76a47f714766 add memcached configuration option, small corrections for the build process and add installDrupal.sh file to the release
ymh <ymh.work@gmail.com>
parents: 406
diff changeset
    25
CACHE_MEMCACHED_HOST=127.0.0.1
76a47f714766 add memcached configuration option, small corrections for the build process and add installDrupal.sh file to the release
ymh <ymh.work@gmail.com>
parents: 406
diff changeset
    26
CACHE_MEMCACHED_PORT=11211
76a47f714766 add memcached configuration option, small corrections for the build process and add installDrupal.sh file to the release
ymh <ymh.work@gmail.com>
parents: 406
diff changeset
    27
76a47f714766 add memcached configuration option, small corrections for the build process and add installDrupal.sh file to the release
ymh <ymh.work@gmail.com>
parents: 406
diff changeset
    28
# URI de base Cocoon
76a47f714766 add memcached configuration option, small corrections for the build process and add installDrupal.sh file to the release
ymh <ymh.work@gmail.com>
parents: 406
diff changeset
    29
CORPUSPAROLE_COCOON_RDF_BASE_URI=
76a47f714766 add memcached configuration option, small corrections for the build process and add installDrupal.sh file to the release
ymh <ymh.work@gmail.com>
parents: 406
diff changeset
    30
# URL de moissonnage Cocoon
76a47f714766 add memcached configuration option, small corrections for the build process and add installDrupal.sh file to the release
ymh <ymh.work@gmail.com>
parents: 406
diff changeset
    31
CORPUSPAROLE_COCOON_OAIPMH_URL=
76a47f714766 add memcached configuration option, small corrections for the build process and add installDrupal.sh file to the release
ymh <ymh.work@gmail.com>
parents: 406
diff changeset
    32
76a47f714766 add memcached configuration option, small corrections for the build process and add installDrupal.sh file to the release
ymh <ymh.work@gmail.com>
parents: 406
diff changeset
    33
76a47f714766 add memcached configuration option, small corrections for the build process and add installDrupal.sh file to the release
ymh <ymh.work@gmail.com>
parents: 406
diff changeset
    34
# Configuration RDF4J
76a47f714766 add memcached configuration option, small corrections for the build process and add installDrupal.sh file to the release
ymh <ymh.work@gmail.com>
parents: 406
diff changeset
    35
CORPUSPAROLE_RDF4J_BASE_URL=http://172.16.1.5:8080/rdf4j-server
76a47f714766 add memcached configuration option, small corrections for the build process and add installDrupal.sh file to the release
ymh <ymh.work@gmail.com>
parents: 406
diff changeset
    36
CORPUSPAROLE_RDF4J_REPOSITORY=
76a47f714766 add memcached configuration option, small corrections for the build process and add installDrupal.sh file to the release
ymh <ymh.work@gmail.com>
parents: 406
diff changeset
    37
CORPUSPAROLE_RDF4J_REPOSITORY_RAW=
76a47f714766 add memcached configuration option, small corrections for the build process and add installDrupal.sh file to the release
ymh <ymh.work@gmail.com>
parents: 406
diff changeset
    38
CORPUSPAROLE_RDF4J_LEXVO_REPOSITORY=
76a47f714766 add memcached configuration option, small corrections for the build process and add installDrupal.sh file to the release
ymh <ymh.work@gmail.com>
parents: 406
diff changeset
    39
22
a50cbd7d702f small change in pagination and add missing .env template
ymh <ymh.work@gmail.com>
parents:
diff changeset
    40
428
76a47f714766 add memcached configuration option, small corrections for the build process and add installDrupal.sh file to the release
ymh <ymh.work@gmail.com>
parents: 406
diff changeset
    41
# Configuration Elasticsearch
76a47f714766 add memcached configuration option, small corrections for the build process and add installDrupal.sh file to the release
ymh <ymh.work@gmail.com>
parents: 406
diff changeset
    42
ELASTICSEARCH_URL=
76a47f714766 add memcached configuration option, small corrections for the build process and add installDrupal.sh file to the release
ymh <ymh.work@gmail.com>
parents: 406
diff changeset
    43
ELASTICSEARCH_LOG_PATH='logs/elasticsearch.log'
76a47f714766 add memcached configuration option, small corrections for the build process and add installDrupal.sh file to the release
ymh <ymh.work@gmail.com>
parents: 406
diff changeset
    44
ELASTICSEARCH_INDEX='corpus'
76a47f714766 add memcached configuration option, small corrections for the build process and add installDrupal.sh file to the release
ymh <ymh.work@gmail.com>
parents: 406
diff changeset
    45
ELASTICSEARCH_SHARDS=1
76a47f714766 add memcached configuration option, small corrections for the build process and add installDrupal.sh file to the release
ymh <ymh.work@gmail.com>
parents: 406
diff changeset
    46
ELASTICSEARCH_REPLICAS=1
76a47f714766 add memcached configuration option, small corrections for the build process and add installDrupal.sh file to the release
ymh <ymh.work@gmail.com>
parents: 406
diff changeset
    47
76a47f714766 add memcached configuration option, small corrections for the build process and add installDrupal.sh file to the release
ymh <ymh.work@gmail.com>
parents: 406
diff changeset
    48
76a47f714766 add memcached configuration option, small corrections for the build process and add installDrupal.sh file to the release
ymh <ymh.work@gmail.com>
parents: 406
diff changeset
    49
# Configuration registre Handle
491
e9e436a588b2 Install corrections
ymh <ymh.work@gmail.com>
parents: 428
diff changeset
    50
HANDLE_HOST=127.0.0.1
428
76a47f714766 add memcached configuration option, small corrections for the build process and add installDrupal.sh file to the release
ymh <ymh.work@gmail.com>
parents: 406
diff changeset
    51
HANDLE_PORT=8000
76a47f714766 add memcached configuration option, small corrections for the build process and add installDrupal.sh file to the release
ymh <ymh.work@gmail.com>
parents: 406
diff changeset
    52
HANDLE_PREFIX=12345.100
76a47f714766 add memcached configuration option, small corrections for the build process and add installDrupal.sh file to the release
ymh <ymh.work@gmail.com>
parents: 406
diff changeset
    53
76a47f714766 add memcached configuration option, small corrections for the build process and add installDrupal.sh file to the release
ymh <ymh.work@gmail.com>
parents: 406
diff changeset
    54
HANDLE_ADMIN_ID=CORPUS_ADMIN
76a47f714766 add memcached configuration option, small corrections for the build process and add installDrupal.sh file to the release
ymh <ymh.work@gmail.com>
parents: 406
diff changeset
    55
HANDLE_CERT_OR_PKEY=""
76a47f714766 add memcached configuration option, small corrections for the build process and add installDrupal.sh file to the release
ymh <ymh.work@gmail.com>
parents: 406
diff changeset
    56
HANDLE_PASSWORD=NULL
552
2c579ea45608 Add email and description in handle registry entries
ymh <ymh.work@gmail.com>
parents: 539
diff changeset
    57
HANDLE_TITLE_PREFIX="Trésors de la parole"
2c579ea45608 Add email and description in handle registry entries
ymh <ymh.work@gmail.com>
parents: 539
diff changeset
    58
HANDLE_CONTACT_EMAIL=""
428
76a47f714766 add memcached configuration option, small corrections for the build process and add installDrupal.sh file to the release
ymh <ymh.work@gmail.com>
parents: 406
diff changeset
    59
76a47f714766 add memcached configuration option, small corrections for the build process and add installDrupal.sh file to the release
ymh <ymh.work@gmail.com>
parents: 406
diff changeset
    60
76a47f714766 add memcached configuration option, small corrections for the build process and add installDrupal.sh file to the release
ymh <ymh.work@gmail.com>
parents: 406
diff changeset
    61
# Geonames user name (cf. http://www.geonames.org/login)
76a47f714766 add memcached configuration option, small corrections for the build process and add installDrupal.sh file to the release
ymh <ymh.work@gmail.com>
parents: 406
diff changeset
    62
GEONAMES_USERNAME="demo"
76a47f714766 add memcached configuration option, small corrections for the build process and add installDrupal.sh file to the release
ymh <ymh.work@gmail.com>
parents: 406
diff changeset
    63
538
0454014a4bb6 new version 0.0.20 and small doc improvement
ymh <ymh.work@gmail.com>
parents: 491
diff changeset
    64
# Configuration proxy
0454014a4bb6 new version 0.0.20 and small doc improvement
ymh <ymh.work@gmail.com>
parents: 491
diff changeset
    65
# protocole http
539
bb12d638cb9f improve documentation on proxy
ymh <ymh.work@gmail.com>
parents: 538
diff changeset
    66
# format [<scheme>://][<username>:<password>@]<IP>:<port>
538
0454014a4bb6 new version 0.0.20 and small doc improvement
ymh <ymh.work@gmail.com>
parents: 491
diff changeset
    67
HTTP_PROXY=
0454014a4bb6 new version 0.0.20 and small doc improvement
ymh <ymh.work@gmail.com>
parents: 491
diff changeset
    68
# protocole https
539
bb12d638cb9f improve documentation on proxy
ymh <ymh.work@gmail.com>
parents: 538
diff changeset
    69
# format [<scheme>://][<username>:<password>@]<IP>:<port>
bb12d638cb9f improve documentation on proxy
ymh <ymh.work@gmail.com>
parents: 538
diff changeset
    70
HTTPS_PROXY=
538
0454014a4bb6 new version 0.0.20 and small doc improvement
ymh <ymh.work@gmail.com>
parents: 491
diff changeset
    71
# liste de serveur (séparée par des ",") pour laquelle la configuration de proxy doit être ignoré
0454014a4bb6 new version 0.0.20 and small doc improvement
ymh <ymh.work@gmail.com>
parents: 491
diff changeset
    72
NO_PROXY=
428
76a47f714766 add memcached configuration option, small corrections for the build process and add installDrupal.sh file to the release
ymh <ymh.work@gmail.com>
parents: 406
diff changeset
    73
76a47f714766 add memcached configuration option, small corrections for the build process and add installDrupal.sh file to the release
ymh <ymh.work@gmail.com>
parents: 406
diff changeset
    74
### les pramètres suivant sont des paramêtre internes
76a47f714766 add memcached configuration option, small corrections for the build process and add installDrupal.sh file to the release
ymh <ymh.work@gmail.com>
parents: 406
diff changeset
    75
76a47f714766 add memcached configuration option, small corrections for the build process and add installDrupal.sh file to the release
ymh <ymh.work@gmail.com>
parents: 406
diff changeset
    76
# configuration du système de mail (non utilisé)
22
a50cbd7d702f small change in pagination and add missing .env template
ymh <ymh.work@gmail.com>
parents:
diff changeset
    77
MAIL_DRIVER=smtp
a50cbd7d702f small change in pagination and add missing .env template
ymh <ymh.work@gmail.com>
parents:
diff changeset
    78
MAIL_HOST=mailtrap.io
a50cbd7d702f small change in pagination and add missing .env template
ymh <ymh.work@gmail.com>
parents:
diff changeset
    79
MAIL_PORT=2525
a50cbd7d702f small change in pagination and add missing .env template
ymh <ymh.work@gmail.com>
parents:
diff changeset
    80
MAIL_USERNAME=null
a50cbd7d702f small change in pagination and add missing .env template
ymh <ymh.work@gmail.com>
parents:
diff changeset
    81
MAIL_PASSWORD=null
a50cbd7d702f small change in pagination and add missing .env template
ymh <ymh.work@gmail.com>
parents:
diff changeset
    82
153
338bcc78d431 add HandleClient implementation + configuration + tests
ymh <ymh.work@gmail.com>
parents: 28
diff changeset
    83
338bcc78d431 add HandleClient implementation + configuration + tests
ymh <ymh.work@gmail.com>
parents: 28
diff changeset
    84
HANDLE_TEST_PREFIX=12345.101
338bcc78d431 add HandleClient implementation + configuration + tests
ymh <ymh.work@gmail.com>
parents: 28
diff changeset
    85
338bcc78d431 add HandleClient implementation + configuration + tests
ymh <ymh.work@gmail.com>
parents: 28
diff changeset
    86
HANDLE_TEST_CERT=""
338bcc78d431 add HandleClient implementation + configuration + tests
ymh <ymh.work@gmail.com>
parents: 28
diff changeset
    87
HANDLE_TEST_CERT_PASSWORD=NULL
338bcc78d431 add HandleClient implementation + configuration + tests
ymh <ymh.work@gmail.com>
parents: 28
diff changeset
    88
HANDLE_TEST_CERT_ADMIN_HANDLE=""
338bcc78d431 add HandleClient implementation + configuration + tests
ymh <ymh.work@gmail.com>
parents: 28
diff changeset
    89
338bcc78d431 add HandleClient implementation + configuration + tests
ymh <ymh.work@gmail.com>
parents: 28
diff changeset
    90
HANDLE_TEST_RSA_KEY=""
338bcc78d431 add HandleClient implementation + configuration + tests
ymh <ymh.work@gmail.com>
parents: 28
diff changeset
    91
HANDLE_TEST_RSA_PASSWORD=NULL
338bcc78d431 add HandleClient implementation + configuration + tests
ymh <ymh.work@gmail.com>
parents: 28
diff changeset
    92
HANDLE_TEST_RSA_ADMIN_HANDLE=""
338bcc78d431 add HandleClient implementation + configuration + tests
ymh <ymh.work@gmail.com>
parents: 28
diff changeset
    93
338bcc78d431 add HandleClient implementation + configuration + tests
ymh <ymh.work@gmail.com>
parents: 28
diff changeset
    94
HANDLE_TEST_DSA_KEY=""
338bcc78d431 add HandleClient implementation + configuration + tests
ymh <ymh.work@gmail.com>
parents: 28
diff changeset
    95
HANDLE_TEST_DSA_PASSWORD=NULL
338bcc78d431 add HandleClient implementation + configuration + tests
ymh <ymh.work@gmail.com>
parents: 28
diff changeset
    96
HANDLE_TEST_DSA_ADMIN_HANDLE=""
308
e032d686d88e add hierarchy info in document indexation + geostats api controllers + add some keys to geonames resolver
ymh <ymh.work@gmail.com>
parents: 275
diff changeset
    97
428
76a47f714766 add memcached configuration option, small corrections for the build process and add installDrupal.sh file to the release
ymh <ymh.work@gmail.com>
parents: 406
diff changeset
    98
# timeout par défaut pour le client HTTP EasyRDF
76a47f714766 add memcached configuration option, small corrections for the build process and add installDrupal.sh file to the release
ymh <ymh.work@gmail.com>
parents: 406
diff changeset
    99
EASYRDF_HTTP_CLIENT_TIMEOUT=20
76a47f714766 add memcached configuration option, small corrections for the build process and add installDrupal.sh file to the release
ymh <ymh.work@gmail.com>
parents: 406
diff changeset
   100
76a47f714766 add memcached configuration option, small corrections for the build process and add installDrupal.sh file to the release
ymh <ymh.work@gmail.com>
parents: 406
diff changeset
   101
SESSION_DRIVER=file
76a47f714766 add memcached configuration option, small corrections for the build process and add installDrupal.sh file to the release
ymh <ymh.work@gmail.com>
parents: 406
diff changeset
   102
QUEUE_DRIVER=sync
76a47f714766 add memcached configuration option, small corrections for the build process and add installDrupal.sh file to the release
ymh <ymh.work@gmail.com>
parents: 406
diff changeset
   103
76a47f714766 add memcached configuration option, small corrections for the build process and add installDrupal.sh file to the release
ymh <ymh.work@gmail.com>
parents: 406
diff changeset
   104
# URL de base pour l'ontologie Corpus de la Parole
76a47f714766 add memcached configuration option, small corrections for the build process and add installDrupal.sh file to the release
ymh <ymh.work@gmail.com>
parents: 406
diff changeset
   105
CORPUSPAROLE_ONTOLOGY_URL=http://corpusdelaparole.culture.fr/ontology/
76a47f714766 add memcached configuration option, small corrections for the build process and add installDrupal.sh file to the release
ymh <ymh.work@gmail.com>
parents: 406
diff changeset
   106