摘要:
用这个命令rm -f /www/server/panel/data/domain.conf删除绑定域名后,就能用ip+端口进入面板了 阅读全文
摘要:
acme.sh --issue -d example.com -w /home/wwwroot/example.com 申请证书 单域名 $ acme.sh --renew -d example.com 更新证书 更多 参考 https://deepzz.com/post/acmesh-letsen 阅读全文
摘要:
upstream www_server { server xxx.xxx.xxx.xxx:8080 max_fails=3 fail_timeout=30s; } server { listen 443 ssl; server_name *.123456.com 123456.com; ssl_ce 阅读全文
摘要:
查看CDS磁盘。 a.在没有分区和格式化CDS磁盘之前,执行df -h命令无法查看到CDS磁盘 b.执行fdisk -l查看,红色框为CDS磁盘初始化前的信息。如下图所示。 对CDS磁盘进行分区。 通过两种方式对CDS磁盘进行分区,fdisk 和 parted 方式。fdisk 的分区格式是 MBR 阅读全文
摘要:
Linux 下,使用unzip解压时,报错:$ unzip abc.zip Archive: abc.zip End-of-central-directory signature not found. Either this file is not a zipfile, or it constitu 阅读全文
摘要:
if ( $request_filename ~ xc(.*) ) { rewrite ^/(.*) http://www.xxx.com/kfa$1? permanent; } 阅读全文