在Debian下安装设置Caddy, MariaDB, php
$ sudo apt update
$ sudo apt install curl unzip
$sudo apt install mariadb php-mysql php-gd php-fpm
$mysql -u root -p
create database mydatabase1;
create user [email protected];
set password for [email protected]= PASSWORD(“mypassword”);
grant all privileges on mydatabase1.* to [email protected] identified by ‘mypassword’;