diff options
author | Adam T. Carpenter <atc@53hor.net> | 2021-02-01 17:28:34 -0500 |
---|---|---|
committer | Adam T. Carpenter <atc@53hor.net> | 2021-02-01 17:28:34 -0500 |
commit | caf98ccab7ab40b6c54ef92e691bce6c72e98a27 (patch) | |
tree | 66e2930aa119b625edeadc8c326c32393848d8da | |
parent | 53023cb46a98969ff6ec34a0a33e6a0343a41acb (diff) | |
download | nextcloud-caf98ccab7ab40b6c54ef92e691bce6c72e98a27.tar.xz nextcloud-caf98ccab7ab40b6c54ef92e691bce6c72e98a27.zip |
moved notes to README
-rw-r--r-- | Bastillefile | 26 | ||||
-rw-r--r-- | README.md | 23 |
2 files changed, 29 insertions, 20 deletions
diff --git a/Bastillefile b/Bastillefile index ee8724a..2846457 100644 --- a/Bastillefile +++ b/Bastillefile @@ -1,31 +1,17 @@ -# Macon Nextcloud Deployment -# -# Apps: -# - News -# - Talk -# - Passwords -# - Photos -# - Contacts -# - Calendar -# - Notes - -# PHP 7.3 and required modules -#PKG php73 php73-ctype php73-curl php73-dom php73-gd php73-hash php73-iconv php73-json php73-xml php73-mbstring php73-openssl php73-posix php73-session php73-simplexml php73-xmlreader php73-xmlwriter php73-zip php73-zlib - -# Recommended packages -# - fileinfo: enhances file analysis performance -# - bz2: required for app extraction -# - intl: translation and non-ASCII sorting -#PKG php73-fileinfo php73-bz2 php73-intl - +# Dirs and mounts CMD mkdir -p /usr/local/www/nextcloud CMD mkdir -p /media/nextcloud_data FSTAB /zroot/nextcloud /usr/local/www/nextcloud nullfs rw 0 0 FSTAB /zroot/nextcloud_data /media/nextcloud_data nullfs rw 0 0 + +# Users CMD pw useradd -n www -m -u 507 && echo Created www user uid 507 + +# Depends PKG nextcloud-php74 apache24 mod_php74 mysql180-server redis # Configuration +OVERLAY usr # Launch SYSRC mysql_enable=YES diff --git a/README.md b/README.md new file mode 100644 index 0000000..7123393 --- /dev/null +++ b/README.md @@ -0,0 +1,23 @@ +# Macon Nextcloud Deployment + +## Apps: + +- News +- Talk +- Passwords +- Photos +- Contacts +- Calendar +- Notes + +## PHP 7.3 and required modules + +`php73 php73-ctype php73-curl php73-dom php73-gd php73-hash php73-iconv php73-json php73-xml php73-mbstring php73-openssl php73-posix php73-session php73-simplexml php73-xmlreader php73-xmlwriter php73-zip php73-zlib` + +## Recommended packages + +- fileinfo: enhances file analysis performance +- bz2: required for app extraction +- intl: translation and non-ASCII sorting + +`php73-fileinfo php73-bz2 php73-intl` |