Différences
Ci-dessous, les différences entre deux révisions de la page.
Les deux révisions précédentesRévision précédenteProchaine révision | Révision précédente | ||
logiciel:internet:wamp:start [2021/04/03 15:41] – [Page d'accueil, menu Vos Projets et le besoin de VirtualHost] admin | logiciel:internet:wamp:start [2022/08/13 21:57] (Version actuelle) – modification externe 127.0.0.1 | ||
---|---|---|---|
Ligne 1: | Ligne 1: | ||
{{tag> | {{tag> | ||
- | ====== Wamp : un serveur | + | ====== Wamp : un serveur |
===== Pré-requis ===== | ===== Pré-requis ===== | ||
Ligne 73: | Ligne 73: | ||
=== Fichier httpd.conf === | === Fichier httpd.conf === | ||
- | <subnumberlist> | + | <WRAP list-deep> |
- **Ouvrez** le fichier **** : | - **Ouvrez** le fichier **** : | ||
- **Cliquez sur l' | - **Cliquez sur l' | ||
Ligne 82: | Ligne 82: | ||
</ | </ | ||
- **Redémarrez WAMP**. | - **Redémarrez WAMP**. | ||
- | </subnumberlist> | + | </WRAP> |
=== Fichier config.inc.php === | === Fichier config.inc.php === | ||
Ligne 178: | Ligne 178: | ||
</ | </ | ||
</ | </ | ||
+ | |||
+ | ==== Déclarer vos noms de sites à l'aide de VirtualHost ==== | ||
+ | |||
+ | Voir [[http:// | ||
+ | |||
+ | Il est vivement conseillé de déclarer vos sites en utilisant la directive **VirtualHost** d' | ||
+ | |||
+ | Ces déclaratives se placent dans le fichier **Repertoire_Wamp\bin\Apache\Apache2.4.10\conf\extra\httpd-vhosts.conf**. | ||
+ | |||
+ | Editer le fichier **httpd.conf** et décommenter la ligne include : | ||
+ | < | ||
+ | #Include conf/ | ||
+ | pour obtenir : | ||
+ | < | ||
+ | Include conf/ | ||
+ | |||
+ | Voici des exemples de déclaratives concernant les sites ' | ||
+ | |||
+ | < | ||
+ | # | ||
+ | # ------------------- # | ||
+ | |||
+ | < | ||
+ | ServerName mon-site-un | ||
+ | ServerAdmin artemus@jcz.fr | ||
+ | DocumentRoot " | ||
+ | # | ||
+ | ErrorLog | ||
+ | CustomLog " | ||
+ | # | ||
+ | < | ||
+ | Options -Indexes +FollowSymLinks +MultiViews | ||
+ | AllowOverride all | ||
+ | < | ||
+ | Require local | ||
+ | </ | ||
+ | </ | ||
+ | </ | ||
+ | |||
+ | # ----------------- # | ||
+ | # | ||
+ | # ----------------- # | ||
+ | |||
+ | < | ||
+ | ServerName localhost | ||
+ | ServerAdmin artemus@jcz.fr | ||
+ | DocumentRoot " | ||
+ | # | ||
+ | ErrorLog | ||
+ | CustomLog " | ||
+ | # | ||
+ | < | ||
+ | Options -Indexes +FollowSymLinks +MultiViews | ||
+ | AllowOverride none | ||
+ | < | ||
+ | Require local | ||
+ | </ | ||
+ | </ | ||
+ | </ | ||
+ | |||
+ | # ------------------ # | ||
+ | # | ||
+ | # ------------------ # | ||
+ | |||
+ | < | ||
+ | ServerName phpmyadmin | ||
+ | ServerAdmin artemus@jcz.fr | ||
+ | DocumentRoot " | ||
+ | # | ||
+ | ErrorLog | ||
+ | CustomLog " | ||
+ | # | ||
+ | < | ||
+ | Options -Indexes +FollowSymLinks +MultiViews | ||
+ | AllowOverride none | ||
+ | < | ||
+ | Require local | ||
+ | </ | ||
+ | </ | ||
+ | </ | ||
+ | |||
+ | # ---------------------- # | ||
+ | # | ||
+ | # ---------------------- # | ||
+ | |||
+ | < | ||
+ | ServerName mon-site-trois | ||
+ | ServerAdmin artemus@jcz.fr | ||
+ | DocumentRoot " | ||
+ | # | ||
+ | ErrorLog | ||
+ | CustomLog " | ||
+ | LogLevel warn rewrite: | ||
+ | # | ||
+ | < | ||
+ | Options -Indexes +FollowSymLinks +MultiViews | ||
+ | AllowOverride all | ||
+ | < | ||
+ | Require local | ||
+ | Require ip 192.168.1.33 | ||
+ | </ | ||
+ | </ | ||
+ | </ | ||
+ | |||
+ | Ne confondez pas les adesses IP d' | ||
+ | |||
+ | Les adresses IP d' | ||
+ | |||
+ | Pour de plus amples explications, | ||
+ | |||
+ | Lisez la documention d' | ||
+ | * **ServerName** : nom de votre site (obligatoire). | ||
+ | * **serverAdmin** : adresse email pour vous joindre en cas de problème (facultatif en mode local). | ||
+ | * **DocumentRoot** : nom du répertoire racine où se trouve votre site (obligatoire). | ||
+ | * **ErrorLog** : fichier compte-rendu des erreurs d' | ||
+ | * **CustomLog** : fichier complémentaire des erreurs d' | ||
+ | * **Options** : déclarative pour démarrer sans problème (obligatoire). Lisez la documentation d' | ||
+ | * **AllowOverride** : pour accéder au fichier ' | ||
+ | |||
+ | le serveur Apache est à l' | ||
===== Utilisation ===== | ===== Utilisation ===== | ||
Ligne 185: | Ligne 305: | ||
===== Voir aussi ===== | ===== Voir aussi ===== | ||
- | * **(fr)** | + | * **(fr)** [[http:// |
- | * **(fr)** | + | * **(fr)** [[http:// |
- | * **(fr)** | + | * **(fr)** [[http:// |
- | * **(fr)** | + | * **(fr)** [[http:// |
* **(fr)** [[http:// | * **(fr)** [[http:// | ||
* **(fr)** [[http:// | * **(fr)** [[http:// | ||
+ | * **(fr)** [[http:// | ||
+ | * **(fr)** [[http:// | ||
+ | * **(fr)** [[http:// | ||
+ | * **(fr)** [[http:// | ||
+ | * **(fr)** [[http:// | ||
---- | ---- | ||
//Basé sur << [[http:// | //Basé sur << [[http:// |