[framadate] includes the framadate php configuration file

certbot_on_virtu
_shirenn 2020-05-03 20:53:42 +02:00
parent 6eaf509ff3
commit 6c06f51e24
No known key found for this signature in database
GPG Key ID: F3E9F031CC3A742C
3 changed files with 131 additions and 0 deletions

View File

@ -44,6 +44,13 @@
state: touch state: touch
mode: 0600 mode: 0600
- name: Configure framadate
template:
src: config.php.j2
dest: '{{ framadate.path }}/app/inc/config.php'
owner: www-data
mode: 0640
- name: Configure admin password - name: Configure admin password
copy: copy:
content: "{{ framadate.admin_username }}:{{ framadate.admin_password_hash }}\n" content: "{{ framadate.admin_username }}:{{ framadate.admin_password_hash }}\n"

View File

@ -0,0 +1,123 @@
/**
{{ ansible_header | comment }}
**/
<?php
/**
* This software is governed by the CeCILL-B license. If a copy of this license
* is not distributed with this file, you can obtain one at
* http://www.cecill.info/licences/Licence_CeCILL-B_V1-en.txt
*
* Authors of STUdS (initial project): Guilhem BORGHESI (borghesi@unistra.fr) and Raphaël DROZ
* Authors of Framadate/OpenSondage: Framasoft (https://github.com/framasoft)
*
* =============================
*
* Ce logiciel est régi par la licence CeCILL-B. Si une copie de cette licence
* ne se trouve pas avec ce fichier vous pouvez l'obtenir sur
* http://www.cecill.info/licences/Licence_CeCILL-B_V1-fr.txt
*
* Auteurs de STUdS (projet initial) : Guilhem BORGHESI (borghesi@unistra.fr) et Raphaël DROZ
* Auteurs de Framadate/OpenSondage : Framasoft (https://github.com/framasoft)
*/
// Fully qualified domain name of your webserver.
// If this is unset or empty, the servername is determined automatically.
// You *have to set this* if you are running Framadate behind a reverse proxy.
const APP_URL = 'abyme.adh.crans.org';
// Application name
const NOMAPPLICATION = 'Framadate';
// Database administrator email
const ADRESSEMAILADMIN = 'contact@crans.org';
// Email for automatic responses (you should set it to "no-reply")
const ADRESSEMAILREPONSEAUTO = 'no-reply@crans.org';
// Database driver
const DB_DRIVER = 'pdo_pgsql';
// Database name
const DB_NAME = 'framadate';
// Database host
const DB_HOST = 'thot.crans.org';
// Database port
const DB_PORT = '5432';
// Database user
const DB_USER = 'framadate';
// Database password
// À remplir avec crans_passwords
const DB_PASSWORD = '{{ password_db }}';
// Table name prefix
const TABLENAME_PREFIX = 'fd_';
// Name of the table that stores migration script already executed
const MIGRATION_TABLE = 'framadate_migration';
// Default Language
const DEFAULT_LANGUAGE = 'fr';
// List of supported languages, fake constant as arrays can be used as constants only in PHP >=5.6
$ALLOWED_LANGUAGES = [
'fr' => 'Français',
'en' => 'English',
'oc' => 'Occitan',
'es' => 'Español',
'de' => 'Deutsch',
'nl' => 'Dutch',
'it' => 'Italiano',
'br' => 'Brezhoneg',
'hu' => 'Magyar',
];
// Path to image file with the title
const IMAGE_TITRE = 'images/logo-framadate.png';
// Clean URLs, boolean
const URL_PROPRE = true;
// Use REMOTE_USER data provided by web server
const USE_REMOTE_USER = true;
// Path to the log file
const LOG_FILE = 'admin/stdout.log';
// Days (after expiration date) before purging a poll
const PURGE_DELAY = 60;
// Max slots per poll
const MAX_SLOTS_PER_POLL = 366;
// Number of seconds before we allow to resend an "Remember Edit Link" email.
const TIME_EDIT_LINK_EMAIL = 60;
// Config
$config = [
/* general config */
'use_smtp' => true, // use email for polls creation/modification/responses notification
'smtp_options' => [
'host' => 'smtp.crans.org', // SMTP server (you could add many servers (main and backup for example) : use ";" like separator
'auth' => false, // Enable SMTP authentication
'username' => '', // SMTP username
'password' => '', // SMTP password
'secure' => '', // Enable encryption (false, tls or ssl)
'port' => 25, // TCP port to connect to
'use_sendmail' => false, // If you use a local email relay / mail server
],
/* home */
'show_what_is_that' => true, // display "how to use" section
'show_the_software' => true, // display technical information about the software
'show_cultivate_your_garden' => false, // display "development and administration" information
/* create_classic_poll.php / create_date_poll.php */
'default_poll_duration' => 180, // default values for the new poll duration (number of days).
/* create_classic_poll.php */
'user_can_add_img_or_link' => true, // user can add link or URL when creating his poll.
'markdown_editor_by_default' => true, // The markdown editor for the description is enabled by default
'provide_fork_awesome' => true, // Whether the build-in fork-awesome should be provided
];

View File

@ -13,6 +13,7 @@
path: /var/www/framadate path: /var/www/framadate
admin_username: framadate admin_username: framadate
admin_password_hash: "{{ vault_framadate_password_hash }}" admin_password_hash: "{{ vault_framadate_password_hash }}"
password_db: "{{ vault_framadate_password_db }}"
roles: roles:
- framadate - framadate