This commit is contained in:
tavo-wasd 2023-11-07 17:42:51 -06:00
parent 0eb6b8d5f3
commit 288fe39962

View file

@ -1,12 +1,7 @@
# Ask for domain & database credentials
printf "Domain name (e.g. cloud.example.com):\n * DNS records must already be set up!\n> " && read -r domain
printf "nextcloud database admin username:\n> " && read -r nextcloud_db_admin
printf "nextcloud database admin password:\n> " && read -r nextcloud_db_admin_pass
# Install dependencies
```shell
apt install -y curl nginx python3-certbot-nginx postgresql php php-{fpm,bcmath,bz2,intl,gd,mbstring,pgsql,zip,xml,curl,imagick,gmp}
apt install -y curl nginx python3-certbot-nginx postgresql php php-{fpm,bcmath,bz2,intl,gd,mbstring,pgsql,zip,xml,curl,imagick,gmp} libmagickcore-6.q16-6-extra
```
For some reason that installs apache2, remove it as we don't need it.