mirror of
https://github.com/RaspAP/raspap-webgui.git
synced 2024-11-22 07:30:23 +00:00
Update mkcert release version. Addresses #513
This commit is contained in:
parent
16f146b0da
commit
d36a6b2d10
1 changed files with 2 additions and 1 deletions
|
@ -8,6 +8,7 @@ certname=$HOSTNAME."local"
|
||||||
lighttpd_ssl="/etc/lighttpd/ssl"
|
lighttpd_ssl="/etc/lighttpd/ssl"
|
||||||
lighttpd_conf="/etc/lighttpd/lighttpd.conf"
|
lighttpd_conf="/etc/lighttpd/lighttpd.conf"
|
||||||
webroot_dir="/var/www/html"
|
webroot_dir="/var/www/html"
|
||||||
|
mkcert_version="1.4.1"
|
||||||
|
|
||||||
### NOTE: all the below functions are overloadable for system-specific installs
|
### NOTE: all the below functions are overloadable for system-specific installs
|
||||||
|
|
||||||
|
@ -53,7 +54,7 @@ function config_installation() {
|
||||||
# Installs pre-built mkcert binary for Arch Linux ARM
|
# Installs pre-built mkcert binary for Arch Linux ARM
|
||||||
function install_mkcert() {
|
function install_mkcert() {
|
||||||
install_log "Fetching mkcert binary"
|
install_log "Fetching mkcert binary"
|
||||||
sudo wget -q https://github.com/FiloSottile/mkcert/releases/download/v1.3.0/mkcert-v1.3.0-linux-arm -O /usr/local/bin/mkcert || install_error "Unable to download mkcert"
|
sudo wget -q https://github.com/FiloSottile/mkcert/releases/download/v${mkcert_version}/mkcert-v${mkcert_version}-linux-arm -O /usr/local/bin/mkcert || install_error "Unable to download mkcert"
|
||||||
sudo chmod +x /usr/local/bin/mkcert
|
sudo chmod +x /usr/local/bin/mkcert
|
||||||
|
|
||||||
install_log "Installing mkcert"
|
install_log "Installing mkcert"
|
||||||
|
|
Loading…
Reference in a new issue