搭建NextCloud(LEMP环境)

系统为Debian12,LEMP环境指Linux,Nginx, MariaDB, PHP-FPM 1.更新软件包,安装Nginx, MariaDB, PHP-FPM sudo apt update && sudo apt upgrade -y sudo apt-get install -y nginx-extras mariadb-server mariadb-client php-common php-cli php-cgi php-fpm php-opcache php-mysql php-xml php-xmlrpc php-gd php-json php-curl php-zip php-mbstring php-bz2 php-intl php-bcmath php-gmp imagemagick...

搭建WordPress(LAMP环境)

1.LAMP环境安装 本例中系统Debian11 sudo apt update && sudo apt upgrade sudo apt install -y apache2 apache2-utils mariadb-server mariadb-client php7.4 php7.4-fpm libapache2-mod-php7.4 php7.4-mysql php7.4-mbstring php7.4-cli php7.4-xml php7.4-common php7.4-gd php7.4-bcmath php7.4-json php7.4-opcache php7.4-readline php7.4-curl php7.4-zip unzip 运行MariaDB前首次配置 sudo...

acme.sh签发RSA+ECC通配符证书

一,ECC+RSA双证书的签发 1.下载安装acme.sh wget -O - | sh 2. 取得Cloudflare API 参见Cloudflare官方说明,这里我们接下来使用的是 Global API Key 3.签发ECC和RSA双证书 export CF_Key="yourCFkey"export CF_Email="youremail@youremail.com" 签发ECC证书,其中ec-256可以更换为ec-384 ./acme.sh --issue --dns dns_cf -d yourdomain.com -d *.yourdomain.com -k ec-256...

搭建WordPress(LEMP环境)

LEMP环境的安装 1.LEMP环境指 Linux, Nginx, MariaDB或者MySQL 以及 PHP,本例中系统Debian 10 2.更新软件包 sudo apt update && sudo apt upgrade 3.安装Nginx,MariaDB,php7.3 sudo apt install -y nginx-extras mariadb-server mariadb-client php7.3 php7.3-fpm php7.3-mysql php-common php7.3-cli php7.3-common php7.3-json php7.3-opcache php7.3-readline 4....