-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathletsencrypt.sh
65 lines (47 loc) · 1.57 KB
/
letsencrypt.sh
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
#!/bin/bash
# Finit l'installation de Moodle :
# Indique l'installation de Moodle
echo "Installation de Moodle..."
# Crée un fichier de configuration pour Moodle
echo "<?php // Moodle configuration file
unset($CFG);
global $CFG;
$CFG = new stdClass();
$CFG->dbtype = 'mariadb';
$CFG->dblibrary = 'native';
$CFG->dbhost = 'localhost';
$CFG->dbname = 'moodle';
$CFG->dbuser = 'moodleuser';
$CFG->dbpass = 'yourpassword';
$CFG->prefix = 'mdl_';
$CFG->dboptions = array (
'dbpersist' => 0,
'dbport' => '',
'dbsocket' => '',
'dbcollation' => 'utf8mb4_unicode_ci',
);
$CFG->wwwroot = 'http://51.91.148.34/moodle';
$CFG->dataroot = '/var/moodledata';
$CFG->admin = 'admin';
$CFG->directorypermissions = 0777;
require_once(__DIR__ . '/lib/setup.php');
// There is no php closing tag in this file,
// it is intentional because it prevents trailing whitespace problems!" > /var/www/html/moodle/config.php
# Indique l'installation de Let's Encrypt
echo "Installation de Let's Encrypt..."
# Installe le paquet snap
apt install -y snapd
# Installe le paquet core
snap install core
# Installe le paquet certbot
snap install --classic certbot
# Crée un lien symbolique pour certbot
ln -s /snap/bin/certbot /usr/bin/certbot
# Installe le certificat Let's Encrypt
certbot --apache
# Affiche un message pour indiquer que l'installation de Let's Encrypt est terminée
echo "Installation de Let's Encrypt terminé !"
# Indique où l'installation doit se finir
echo "Installation terminé ! Votre site est désormais configuré en https !"
# Indique la fin du script
exit 0