标签 ›
WebServer
转载请注明源地址:https://www.latiao.org/1624.html
由于近期AWS对IPv4启用了收费,所以本站开启了IPv6的访问。
本教程是基于已启用了IPv4服务继续,所以省略了创建VPC等步骤。
顺便水个文章。
第一步:选择现有VPC,编辑CIDR
第二步:添...
1.安装 certbot
yum install epel-release
yum install certbot
2.签发 跟着 #根据命令提示设置dns txt解析
certbot certonly --preferred-challenges dns --manual -d *.youdomain.com --server https://acme-v02.api.letsencrypt.org/directory
3....
下载php到本地
解压
预编译,记得同时创建 /opt/php 目录
./configure --prefix=/opt/php --with-config-file-path=/opt/php/etc --enable-fpm --with-fpm-user=www --with-fpm-group=www --with-mysqli --with-pdo-mysql --with-iconv-di...
安装过程
1.下载nginx#mkdir nginx#cd nginx#wget http://nginx.org/download/nginx-1.19.0.tar.gz //可以到官网下载最新的
2.安装依赖组件#apt=get install openssl libssl-dev libpcre3 libpcre3-dev zliblg-dev make
3.解压#tar -zxvf nginx-1.19.0.t...
本文章主要讲述在Ubuntu使用openssl自签ca,并应用到apache中创建如下路径
A 安装
B 然后genrsa 标准命令生成私钥,-out 文件输出到哪里 不写就是当前目录
┌──(root㉿kali)-[~]
└─# openssl genrsa -out cakey.pem 204...