summaryrefslogtreecommitdiff
path: root/doc/fr_FR/centos-installation.markdown
blob: 1e197de5bc567a080d3a71973d07ed858a6e865a (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
Installation de Kanboard sur CentOS
===================================

CentOS 7
--------

Installez PHP et Apache :

```bash
yum install -y php php-mbstring php-pdo php-gd unzip wget
```

Par défaut, Centos 7 utilise PHP 5.4.16 et Apache 2.4.6.

Redémarrer Apache :

```bash
systemctl restart httpd.service
```

Installez Kanboard :

```bash
cd /var/www/html
wget https://kanboard.net/kanboard-latest.zip
unzip kanboard-latest.zip
chown -R apache:apache kanboard/data
rm kanboard-latest.zip
```

CentOS 6.x
----------

Installez PHP et Apache :

```bash
yum install -y php php-mbstring php-pdo php-gd unzip wget
```

Par défaut, Centos 6.5 utilise PHP 5.3.3 et Apache 2.2.15.

Activez les "short tags":

- Modifiez le fichier `/etc/php.ini`
- Changez cette ligne pour que la valeur soit à `On` : `short_open_tag = On`

Redémarrez Apache:

```bash
service httpd restart
```

Installez Kanboard :

```bash
cd /var/www/html
wget https://kanboard.net/kanboard-latest.zip
unzip kanboard-latest.zip
chown -R apache:apache kanboard/data
rm kanboard-latest.zip
```

Restrictions SELinux
--------------------

Si SELinux est activé, soyez sûr que Apache puisse écrire dans le répertoire `data` :

```bash
chcon -R -t httpd_sys_content_rw_t /var/www/html/kanboard/data
```

La même chose s'applique pour autoriser Kanboard à envoyer des requêtes réseau externes :

```bash
setsebool -P httpd_can_network_connect=1
```

Autoriser des connexions externes est nécessaire si vous souhaitez utiliser LDAP, SMTP ou les webhooks.

Notes
-----

Certaines fonctionnalités de Kanboard demandent à ce que vous installiez une [tâche planifiée](cronjob.markdown).