Aller au contenu

Installer Apache

Installer Apache avec le gestionnaire de paquet Homebrew.

Installer Apache
brew install httpd
Ouvrir Apache au démarrage
sudo brew services start httpd
# URL = http://localhost:8080
Configurer httpd
nano /usr/local/etc/httpd/httpd.conf
Définir le port httpd.conf
Listen 8080
// A modifier
Listen 80
Créer un dossier racine
mkdir sites
Modifier le chemin dans httpd.conf
# Par défaut : /usr/local/var/www
DocumentRoot /Users/<username>/sites

Les commandes de base

Lancer Apache sans alias
sudo /usr/local/opt/apache2/bin/apachectl start
Lancer Apache
sudo apachectl start
Arrêter Apache sans alias
sudo /usr/local/opt/apache2/bin/apachectl stop
Arrêter Apache
sudo apachectl stop
Redémarrer Apache
sudo apachectl restart