2017-10-08 5 views

Répondre

0

Veuillez commencer en installant HomeBrew http://brew.sh/. C'est un gestionnaire de paquets pour MacOS qui permet d'installer facilement différentes applications Unix. MacOS vous invite à installer d'abord Xcode Command Line Tools (à moins que vous ne l'ayez déjà). Après l'installation, la commande suivante, le cas échéant, vous dire comment terminer l'installation:

brew doctor 
//Then updates all packages with: 
brew update 
brew upgrade 
//Then Install Nginx 
brew install nginx 
// Then automatically launch Nginx at startup with: 
sudo cp /usr/local/opt/nginx/*.plist /Library/LaunchDaemons 
sudo launchctl load -w /Library/LaunchDaemons/homebrew.mxcl.nginx.plist 

Bonne chance!

+0

merci, mais cela ne fonctionne pas. – Mergades