instalação do drupal e do software necessário à sua implementação

comecei por criar um contentor no proxmox.

de seguida vou instalar o servidor web:
apt update
apt upgrade
apt install nginx -y

foi instalado com sucesso o servidor..

de seguida instalar o php-fpm:
apt install php php-fpm php-gd php-common php-mysql php-apcu php-gmp php-curl php-intl php-mbstring php-xmlrpc php-gd php-xml php-cli php-zip -y

entretanto configurar:
nano /etc/php/7.3/fpm/php.ini

bom..etapa seguinte é instalar e configurar o servidor MariaDB..

nginx mariadb php drupal8

apt update && apt upgrade
apt install nginx
apt install mariadb-server mariadb-client
mysql_secure_installation
apt install php-fpm php-common php-mbstring php-xmlrpc php-soap php-gd php-xml php-intl php-mysql php-cli php-zip php-curl

https://websiteforstudents.com/installing-nginx-mariadb-on-ubuntu-16-04-17-10-18-04-with-php-7-2-support-lemp/

NGINX, PHP-FPM, e MariaDB no debian 7

atualizar o sistema
# apt-get update && apt-get upgrade

instalar nginx
apt-get install nginx

iniciar o serviço
service nginx start

editar o ficheiro /etc/nginx/nginx.conf e substituir
worker_processes 8; deve ser igual ao número de cores do processador
access_log off; para melhorar a performance de e/s
client_max_body_size 64m;

instalar o php-fpm
# apt-get install php5-fpm php5-mysqlnd

PHP configuration

PHP configuration

For file uploads to work, PHP must be configured properly. The following PHP configuration variables may need to be set or configured, in your PHP php.ini file, .htaccess file, or settings.php files.

Subscrever php