5537d89215
* add apache and nginx * swap config and service status * add new line * remove notes
7 lines
162 B
Bash
7 lines
162 B
Bash
#!/bin/bash -e -o pipefail
|
|
|
|
brew install httpd
|
|
sudo sed -Ei '' 's/Listen .*/Listen 80/' $(brew --prefix)/etc/httpd/httpd.conf
|
|
|
|
invoke_tests "WebServers" "Apache"
|