fix(nginx)

closes #5212
This commit is contained in:
Jacob Heider 2024-03-21 18:28:39 -04:00 committed by Jacob Heider
parent 7ace20dd19
commit 8903641dbb

View file

@ -14,7 +14,7 @@ dependencies:
build:
script: |
./configure $ARGS
make --jobs {{ hw.concurrency }}
make --jobs {{ hw.concurrency }}
make install
env:
ARGS:
@ -26,6 +26,9 @@ provides:
- sbin/nginx
test:
script: |
sed -i.bak -e 's/80/8080/g' {{prefix}}/conf/nginx.conf
nginx -p {{prefix}} -c {{prefix}}/conf/nginx.conf -t
script:
# won't run without `nogroup`
- run: if ! getent group nogroup; then exit 0; fi
if: linux
- sed -i.bak -e 's/80/8080/g' {{prefix}}/conf/nginx.conf
- nginx -p {{prefix}} -c {{prefix}}/conf/nginx.conf -t