- Create an origin certificate in CloudFlare
SSL/TLS -> Origin Server -> Create Certificate
- Convert the PEM cert to PFX
openssl pkcs12 -export -out domain.pfx -inkey domain.key -in domain.crt
IDENTIFICATION DIVISION. | |
PROGRAM-ID. HELLO. | |
DATA DIVISION. | |
WORKING-STORAGE SECTION. | |
01 INDX PIC 9(1) VALUE 1. | |
01 WS-TABLE. | |
05 Nmbrs OCCURS 5 TIMES PIC 9(1). |
sudo sysctl debug.lowpri\_throttle_enabled | |
sudo sysctl debug.lowpri\_throttle_enabled=0 | |
sudo sysctl debug.lowpri\_throttle_enabled=1 |
SSL/TLS -> Origin Server -> Create Certificate
openssl pkcs12 -export -out domain.pfx -inkey domain.key -in domain.crt
var allowPaste = function(e){ | |
e.stopImmediatePropagation(); | |
return true; | |
}; | |
document.addEventListener('paste', allowPaste, true); |
#!/usr/bin/env bash | |
set -euo pipefail | |
: "${2:?Version} ${1:?Package name}" | |
# e.g. fftw | |
name=${1} | |
# e.g. 3.3.10 | |
ver=${2} | |
arch=${3:-big_sur} | |
outfile="${name}_${ver}-${arch}.tar.gz" | |
echo Downloading ${outfile} |