nuage de tags sur la liste, suppression dropdown navbar, rôles/droits sur le profil

This commit is contained in:
Cedric Abonnel
2026-05-12 20:07:33 +02:00
parent 1d2e3d9a24
commit 6e438835f8
3470 changed files with 97124 additions and 109 deletions
@@ -0,0 +1,67 @@
<note important>Article OBSOLÈTE\\
Je vous conseille d'installer une solution Web sur un serveur **Debian**. </note>
Je vous présente (rapidement) comment installer un serveur Linux Apache MySQL PHP sous **Linux Fedora 24 Desktop**.\\
Toutes les commandes sont a exécuter dans une fenêtre **terminal**.
## - Installer sous Linux
### - Linux Fedora
On commence à par installer **Apache httpd**.
```bash
dnf install httpd
```
Ajouter des règles dans le firewall:
```bash
sudo firewall-cmd --permanent --add-service=http
sudo firewall-cmd --permanent --add-service=https
sudo systemctl reload firewalld
```
Activer Apache automatiquement :
```bash
sudo systemctl enable httpd.service
```
Démarrer le service apache :
```bash
sudo service httpd start
```
On continue avec l'installation du SGBD **MariaDB**.
```bash
sudo dnf install mariadb-server
```
Démarrage de MariaDB
```bash
sudo service mariadb start
```
Activer MariaDB automatiquement :
```bash
sudo systemctl enable mariadb
```
Sécuriser l'installation de MariaDB :
```bash
mysql_secure_installation
```
Et enfin, on installe l'interpréteur **PHP**
```bash
sudo dnf install php-mysql php-gd php-cli php-mbstring php-cli php-fpm
```
Activer PHP FPM automatiquement :
```bash
sudo systemctl enable php-fpm
```
Démarrer le service php-fpm et apache :
```bash
sudo service php-fpm start
```
@@ -0,0 +1,18 @@
{
"uuid": "78e1e6cf-2b5e-4d54-9bef-0d0ac21757b9",
"slug": "lamp",
"title": "[OBSOLÈTE] Linux Apache MySQL PHP sous Fedora Core 24",
"author": "cedric.abonnel@gmail.com",
"published": true,
"published_at": "2023-02-09 16:12:19",
"created_at": "2023-02-09 16:12:19",
"updated_at": "2023-02-09 16:12:19",
"revisions": [],
"cover": "",
"files_meta": [],
"external_links": [],
"seo_title": "",
"seo_description": "",
"og_image": "",
"category": "Informatique"
}