Projet

Général

Profil

Apache » Historique » Version 38

Patrice Nadeau, 2017-06-03 14:34

1 3 Patrice Nadeau
h1. Apache
2 1 Patrice Nadeau
3
Serveur de page Web
4
5 21 Patrice Nadeau
> Version 2.4
6
7 1 Patrice Nadeau
---
8
9
{{toc}}
10
11 3 Patrice Nadeau
h2. Installation
12 1 Patrice Nadeau
13
<pre><code class="bash">
14 29 Patrice Nadeau
# Installation
15 31 Patrice Nadeau
zypper install apache2
16 29 Patrice Nadeau
# Activation au démarrage
17 5 Patrice Nadeau
systemctl enable apache2.service
18 1 Patrice Nadeau
# Démarrer Apache :
19 26 Patrice Nadeau
systemctl start apache2.service
20 1 Patrice Nadeau
</code></pre>
21
22
Ouvrir dans le pare-feu :
23
<pre><code class="bash">
24
yast firewall services add service=service:apache2 zone=EXT
25
</code></pre>
26
27
L’emplacement des fichier du serveur est _/srv/www/htdocs_.
28
29
h2. Modules supplémentaires
30 32 Patrice Nadeau
> La configuration d'Apache doit être relue lors de l'activation d'un module
31 1 Patrice Nadeau
32 33 Patrice Nadeau
La liste des modules actifs peut être listé avec
33 32 Patrice Nadeau
<pre><code class="bash">
34
a2enmod -l
35
</code></pre>
36
37
h3. Version
38 31 Patrice Nadeau
39
Inclut dans Apache
40 1 Patrice Nadeau
<pre><code class="bash">
41
a2enmod mod_version
42 31 Patrice Nadeau
</code></pre>
43
44
h3. PHP
45
46
Support pour PHP
47
<pre><code class="bash">
48
zypper install apache2-mod_php5
49 1 Patrice Nadeau
a2enmod mod_php5
50 33 Patrice Nadeau
</code></pre>
51
52
h3. Proxy
53
54 35 Patrice Nadeau
Redirection de serveur
55 33 Patrice Nadeau
<pre><code class="bash">
56
a2enmod proxy 
57
a2enmod proxy_http
58 30 Patrice Nadeau
</code></pre>
59
60 36 Patrice Nadeau
h2. HTTPS
61
62
> Self-certificate
63
64
Générer les clés
65
<pre><code class="bash">
66
openssl req -new > new.ssl.csr
67
openssl rsa -in privkey.pem -out new.cert.key
68
openssl x509 -in new.ssl.csr -out new.cert.cert -req -signkey new.cert.key -days 365
69
cp new.cert.cert /etc/ssl/certs/server.crt
70
cp new.cert.key /etc/ssl/private/server.key
71
</code></pre>
72
73 37 Patrice Nadeau
Modifier le fichier _/etc/apache2/default-server.conf_
74 36 Patrice Nadeau
<pre><code class="php">
75
Listen 443
76
<VirtualHost *:443>
77
    SSLEngine on
78
    SSLCertificateFile /etc/ssl/certs/server.crt
79
    SSLCertificateKeyFile /etc/ssl/private/server.key
80
</VirtualHost>
81
</code></pre>
82
83 38 Patrice Nadeau
Relire la configuration d'Apache
84
<pre><code class="bash">
85
systemctl reload apache2.service
86
</code></pre>
87
88 3 Patrice Nadeau
h2. Serveurs virtuels
89 1 Patrice Nadeau
90 19 Patrice Nadeau
Apache permet de rediriger les demandes d’accès vers 
91
* différents répertoires sur le même serveur 
92
* différents port
93
* un autre serveur
94
95 17 Patrice Nadeau
Très utile pour rediriger les requêtes à partir d'internet avec un seule adresse IP publique (NAT(Network Address Translation)).
96
97
98 18 Patrice Nadeau
Si le fichier _/etc/apache2/vhosts.d/vhost.conf_ n'existe pas, le créer à partir du gabarit de base
99 17 Patrice Nadeau
<pre><code class="bash">
100
cd /etc/apache2/vhosts.d/
101
cp vhost.template vhost.conf
102
</code></pre>
103
104 8 Patrice Nadeau
h3. Redirection vers un dossier différent.
105 6 Patrice Nadeau
106 16 Patrice Nadeau
Ex. : On veux diriger _helpdesk.domain.tld_ vers le dossier _/srv/www/htdocs/helpdesk_ et  _wiki.domain.tld_ vers le dossier _/srv/www/htdocs/wiki_
107 15 Patrice Nadeau
<pre><code class="php">
108
<VirtualHost *:80>
109 16 Patrice Nadeau
        ServerName helpdesk.domain.tld
110
        DocumentRoot /srv/www/htdocs/hepdesk
111 15 Patrice Nadeau
        ServerAdmin admin@domain.tld
112 16 Patrice Nadeau
        <Directory "/srv/www/htdocs/helpdesk">
113 25 Patrice Nadeau
                #Order allow,deny #Since Apache 2.4
114 22 Patrice Nadeau
                Require all granted
115 15 Patrice Nadeau
         </Directory>
116
</VirtualHost>
117
118
<VirtualHost *:80>
119
        ServerName wiki.domain.tld
120
        DocumentRoot /srv/www/htdocs/wiki
121
        ServerAdmin admin@domain.tld
122
        <Directory "/srv/www/htdocs/wiki">
123 25 Patrice Nadeau
                #Order allow,deny # since Apache 2.4
124 22 Patrice Nadeau
                Require all granted
125 1 Patrice Nadeau
         </Directory>
126
</VirtualHost>
127
</code></pre>
128
129
Modifier les items suivants :
130
* *ServerAdmin* : L'adresse de courriel de l'administrateur
131 4 Patrice Nadeau
* *ServerName* : Le FQDN(Fully Qualified Domain Name) du serveur
132 1 Patrice Nadeau
* *DocumentRoot* : L'emplacement des fichiers du site web
133 7 Patrice Nadeau
134
h3. Redirection vers un serveur différent
135
136 34 Patrice Nadeau
> Les modules _proxy_ et _proxy_http_ doivent déjà être actifs
137 11 Patrice Nadeau
138 12 Patrice Nadeau
Modifier le fichier _/etc/apache2/vhosts.d/vhost.conf_ 
139 13 Patrice Nadeau
Ex. : On veux rediriger le service _service_ vers le serveur _server1_
140 14 Patrice Nadeau
<pre><code class="php">
141 12 Patrice Nadeau
<VirtualHost *:80>
142
        ServerName service.domaine.com
143 28 Patrice Nadeau
        ProxyPreserveHost On
144 12 Patrice Nadeau
        ProxyPass / http://serveur1.domaine.com/
145
        ProxyPassReverse / http://serveur1.domaine.com/
146 13 Patrice Nadeau
        ServerAdmin admin@domaine.com
147 12 Patrice Nadeau
</VirtualHost>
148 11 Patrice Nadeau
149 12 Patrice Nadeau
</code></pre>
150 11 Patrice Nadeau
151 7 Patrice Nadeau
h3. Activation des changements
152 1 Patrice Nadeau
153
Relire la configuration d'Apache
154
<pre><code class="bash">
155 27 Patrice Nadeau
systemctl reload apache2.service
156 1 Patrice Nadeau
</code></pre>
157
158
Commandes
159 10 Patrice Nadeau
* _apache2ctl -S_ : liste les serveurs virtuels