8 » Historique » Version 6
Patrice Nadeau, 2016-01-11 19:45
1 | 1 | Patrice Nadeau | h1. Drupal 8 |
---|---|---|---|
2 | 2 | Patrice Nadeau | |
3 | 4 | Patrice Nadeau | > openSUSE Leap 42.1 |
4 | |||
5 | 5 | Patrice Nadeau | _/etc/apache2/vhosts.d/vhost.conf_ |
6 | <pre><code class="bash"> |
||
7 | <VirtualHost *:80> |
||
8 | # Servername www.toto.com |
||
9 | DocumentRoot /srv/www/htdocs/drupal2 |
||
10 | ServerAdmin toto@toto.com |
||
11 | <Directory "/srv/www/htdocs/drupal2"> |
||
12 | Options Indexes ExecCGI FollowSymLinks |
||
13 | AllowOverride All |
||
14 | Require all granted |
||
15 | </Directory> |
||
16 | </VirtualHost> |
||
17 | |||
18 | </code></pre> |
||
19 | |||
20 | 3 | Patrice Nadeau | h2. Installation |
21 | 2 | Patrice Nadeau | |
22 | https://www.drupal.org/upgrade/migrate |
||
23 | 1 | Patrice Nadeau | |
24 | 2 | Patrice Nadeau | Une nouvelle installation de Drupal 8 doit être faite et ensuite une migration vers le nouveau site seras effectué. |
25 | |||
26 | 3 | Patrice Nadeau | h3. PHP OPcache |
27 | 2 | Patrice Nadeau | |
28 | >Module facultatif |
||
29 | |||
30 | Installation |
||
31 | <pre><code class="bash"> |
||
32 | zypper install php5-opcache |
||
33 | </code></pre> |
||
34 | |||
35 | Ajouter dans le fichier _/etc/php/apache2/php.ini_ |
||
36 | <pre><code class="php"> |
||
37 | extension=opcache.so |
||
38 | </code></pre> |
||
39 | |||
40 | Relire la configuration Apache |
||
41 | 1 | Patrice Nadeau | <pre><code class="bash"> |
42 | 2 | Patrice Nadeau | systemctl reload apache2.service |
43 | </code></pre> |
||
44 | |||
45 | 3 | Patrice Nadeau | h3. Drupal 8 |
46 | 2 | Patrice Nadeau | |
47 | 4 | Patrice Nadeau | h4. Sur le serveur |
48 | |||
49 | 2 | Patrice Nadeau | <pre><code class="bash"> |
50 | # Téléchargement |
||
51 | cd /srv/www/htdocs |
||
52 | wget http://ftp.drupal.org/files/projects/drupal-8.0.2.tar.gz |
||
53 | tar -xvf drupal-8.0.2.tar.gz |
||
54 | mv drupal-8.0.2 drupal2 |
||
55 | # changement de la securite |
||
56 | chown wwwrun:www -R drupal2 |
||
57 | </code></pre> |
||
58 | 4 | Patrice Nadeau | |
59 | 6 | Patrice Nadeau | |
60 | 4 | Patrice Nadeau | |
61 | h4. A partrir d'un navigateur internet |