mirror of
https://github.com/actions/runner-images.git
synced 2025-12-10 19:16:48 +00:00
13 lines
407 B
Bash
13 lines
407 B
Bash
#!/bin/bash -e -o pipefail
|
|
################################################################################
|
|
## File: install-nginx.sh
|
|
## Desc: Install Nginx
|
|
################################################################################
|
|
|
|
source ~/utils/utils.sh
|
|
|
|
brew_smart_install nginx
|
|
sudo sed -Ei '' 's/listen.*/listen 80;/' $(brew --prefix)/etc/nginx/nginx.conf
|
|
|
|
invoke_tests "WebServers" "Nginx"
|