mirror of
https://github.com/actions/runner-images.git
synced 2025-12-12 20:18:13 +00:00
13 lines
422 B
Bash
13 lines
422 B
Bash
#!/bin/bash -e -o pipefail
|
|
################################################################################
|
|
## File: install-apache.sh
|
|
## Desc: Install Apache HTTP Server
|
|
################################################################################
|
|
|
|
source ~/utils/utils.sh
|
|
|
|
brew_smart_install httpd
|
|
sudo sed -Ei '' 's/Listen .*/Listen 80/' $(brew --prefix)/etc/httpd/httpd.conf
|
|
|
|
invoke_tests "WebServers" "Apache"
|