This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
#!/bin/bash | |
NGINX_VERSION=1.11.5 | |
HEADERS_MORE_VERSION=0.31 | |
OPENSSL=1.1.0e | |
AJP_VERSION=bf6cd93f2098b59260de8d494f0f4b1f11a84627 | |
DIR=$( cd "$( dirname "${BASH_SOURCE[0]}" )" && pwd ) | |
pushd $DIR |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
#!/bin/bash | |
# https://github.com/ufal/lindat-dspace/wiki/Building-Shibboleth-with-FastCGI-support | |
# ensure the versions are still latest | |
sudo apt-get install libfcgi-dev libboost-all-dev openssl libssl-devc | |
INSTALLDIR=/opt/shibboleth-sp-fastcgi | |
function get { | |
local dirname=$1 |