/
githubmirror
/
aspnetcore
Обзор
Документация
Войти
/
githubmirror
/
aspnetcore
Код
Запросы
0
Пакеты
0
Релизы
0
Аналитика
Безопасность
main
eng/scripts/install-nginx.sh
13 строк
461 B
dotnet-maestro[bot]
[main] Source code updates from dotnet/dotnet (#63958)
08 окт 2025, 18:18
Не верифицирован
08 окт 2025, 18:18
569fc4c
Код
Авторство
О чём код?
#!/usr/bin/env bash set -euo pipefail scriptroot="$( cd -P "$( dirname "${BASH_SOURCE[0]}" )" && pwd )" reporoot="$(dirname "$(dirname "$scriptroot")")" nginxinstall="$reporoot/.tools/nginx" curl -sSL http://nginx.org/download/nginx-1.29.1.tar.gz --retry 5 | tar zxfv - -C /tmp && cd /tmp/nginx-1.29.1/ ./configure --prefix=$nginxinstall --with-http_ssl_module --without-http_rewrite_module make make install echo "##vso[task.prependpath]$nginxinstall/sbin"