diff options
author | Adam T. Carpenter <atc@53hor.net> | 2022-02-08 21:29:09 -0500 |
---|---|---|
committer | Adam T. Carpenter <atc@53hor.net> | 2022-02-08 21:29:09 -0500 |
commit | 7cef6037fd2508c4d3fbdd879692b0a477703c67 (patch) | |
tree | 0577ecfac3b197b92bb50106dad89aac1302db9e | |
parent | 38fa2d5f8501ca8d53a832dff2c81b2693cf5d0c (diff) | |
download | carpentertutoring-7cef6037fd2508c4d3fbdd879692b0a477703c67.tar.xz carpentertutoring-7cef6037fd2508c4d3fbdd879692b0a477703c67.zip |
fix: php8 system install mailer and git deploys
-rw-r--r-- | Bastillefile | 11 |
1 files changed, 4 insertions, 7 deletions
diff --git a/Bastillefile b/Bastillefile index ddc5e5b..9b88382 100644 --- a/Bastillefile +++ b/Bastillefile @@ -1,12 +1,9 @@ # Prerequisites -PKG lighttpd php74 php74-filter php74-openssl +PKG lighttpd php80 php80-filter php80-openssl phpmailer6 OVERLAY usr -CMD mkdir -p /var/www/PHPMailer /var/carpentertutoring -FSTAB /zroot/carpentertutoring /var/carpentertutoring nullfs ro 0 0 - -# Install site to web root -CMD fetch -o - http://git.53hor.net/53hornet/carpentertutoring/archive/master.tar.gz | tar --cd /var/www --strip-components 1 --extract --file - -CMD fetch -o - https://github.com/PHPMailer/PHPMailer/archive/master.zip | tar --cd /var/www/PHPMailer --strip-components 1 --extract --file - +CMD mkdir -p /var/www /var/carpentertutoring +FSTAB /zroot/carpentertutoring/config /var/carpentertutoring nullfs ro 0 0 +FSTAB /zroot/carpentertutoring/htdocs /var/www nullfs ro 0 0 # Start server SYSRC lighttpd_enable=YES |