« Serveur internet sous Windows (2019) » : différence entre les versions

Aller à la navigation Aller à la recherche
Ligne 28 : Ligne 28 :
* MediaWiki 1.28 ; information, MediaWiki 1.27 LTS !
* MediaWiki 1.28 ; information, MediaWiki 1.27 LTS !
** https://www.mediawiki.org/wiki/Compatibility/fr : attention à la compatibilité avec PHP
** https://www.mediawiki.org/wiki/Compatibility/fr : attention à la compatibilité avec PHP
** https://wiki.meurisse.org/wiki/MediaWiki#Prerequisite guide


== Paramétrage ==
== Paramétrage ==

Version du 7 juin 2017 à 23:32

La création d'un serveur internet sous Windows.

Plus précisément, sous Windows Server R2.

Prérequis

Organisation des dossiers sur le serveur

  • ...\wamp\apache24\
  • ...\wamp\mysql\
  • ...\wamp\php\
  • ...\wamp\www\ : contiendra tous les sous-dossiers correspondants aux différents sites

Les sources

Outils

Paramétrage

Apache, httpd.conf, ajouter les lignes suivantes

  • LoadModule php7_module "...\php\php7apache2_4.dll"
  • AddHandler application/x-httpd-php .php
  • # configure the path to php.ini
  • PHPIniDir ...

Apache, httpd.conf, modifier

  • ServerRoot ".../wamp/apache24"
  • Listen 80
  • DocumentRoot ".../wamp/www"
  • <Directory ".../wamp/www">

Apache, httpd.conf, modifier

  • <IfModule dir_module>
  • DirectoryIndex index.html, index.htm, index.php
  • </IfModule>

PHP, php.ini

  • extension_dir = "...\php\ext"
  • session.save_path = "...\temp"

SSL

Commandes

Installation du service Apache
...\Apache24\bin\httpd -k install
Démarrage du service Apache
...\Apache24\bin\httpd -k start
Redémarrage du service Apache
...\Apache24\bin\httpd -k restart

Moniteur Apache (icone dans la barre de notification)

...\Apache24\bin\ApacheMonitor.exe
Vérification du serveur. Fichier index.php
<?php
echo phpinfo();
?>