配置 FTP/SFTP 地址及身份验证信息,上传证书保存为你指定的文件。
如果有 IP 限制策略,请将 121.89.214.110 加入白名单。
上传文件为 PEM 格式,分为:
参考 shell 命令
nginx
# 检测 nginx 配置是否正确
nginx -t
# 加载 nginx 配置
nginx -s reload
# 重启 nginx 服务
systemctl restart nginx
# 检测通过后加载 nginx 配置
nginx -t && echo "配置检测通过" && nginx -s reload && echo "配置加载成功"
apache httpd
# 检测 apache httpd 配置是否正确
httpd -t
# 加载 apache httpd 配置
systemctl reload httpd
# 重启 apache httpd 服务
systemctl restart httpd
# 检测通过后加载 apache httpd 配置
httpd -t && echo "配置检测通过" && systemctl reload httpd && echo "配置加载成功"