分类: 运维
玩转 EdgeOne|深度探索并应用腾讯云边缘安全加速平台的缓存功能
一、EdgeOne 产品简介
腾讯云边缘安全加速平台 EdgeOne(Tencent cloud EdgeOne),基于腾讯边缘计算节点,提供了一体化的加速和安全解决方案。EdgeOne 服务不仅可以提供 DDoS 防护、Rate Limit、WEB 安全防护、API 安全防护等不同的安全防护服务,更重要的是,他具备强大的缓存功能,可以大大提升数据访问的速度和稳定性。
"玩转 EdgeOne|深度探索并应用腾讯云边缘安全加速平台的缓存功能"继续阅读
Debian 11 x64 安装 MySQL 8.0.33
更新
sudo apt update
sudo apt install gnupg
安装 DEB Package
wget -c https://dev.mysql.com/get/mysql-apt-config_0.8.25-1_all.deb
sudo dpkg -i mysql-apt-config_0.8.25-1_all.deb
"Debian 11 x64 安装 MySQL 8.0.33"继续阅读
CentOS 9 x64 使用 Nginx、Supervisor 部署 Go/Golang 服务
前言
在 CentOS 9 x64 系统上,可以通过以下步骤来部署 Golang 服务。
1. 安装必要的软件包
安装以下软件包:
- Golang:Golang 编程语言
- Nginx:Web 服务器
- Supervisor:进程管理工具
- Git:版本控制工具
- EPEL:扩展软件包
"CentOS 9 x64 使用 Nginx、Supervisor 部署 Go/Golang 服务"继续阅读
使用 Debian、Docker 和 Nginx 部署 Web 应用
前言
本文将介绍基于 Debian 的系统上使用 Docker 和 Nginx 进行 Web 应用部署的过程。着重介绍了 Debian、Docker 和 Nginx 的安装和配置。
第 1 步:更新和升级 Debian 系统
- 通过 SSH 连接到服务器。
- 更新软件包列表:
sudo apt update
- 升级已安装的软件包:
sudo apt upgrade
"使用 Debian、Docker 和 Nginx 部署 Web 应用"继续阅读
使用 Nginx 在服务器上搭建一个 Xooxle 镜像站
配置目标
期望能够通过 xooxle.example.com
访问 www.xooxle.com
。
配置 DNS
配置地址:「DNS 解析 DNSPod」->「域名」->「解析」->「添加记录」
xooxle A 222.233.233.23
"使用 Nginx 在服务器上搭建一个 Xooxle 镜像站"继续阅读
解决 `remote: You must use a personal access token with 'api' scope for Git over HTTP.`
背景
在家远程办公的时候 git clone
报错:
remote: HTTP Basic: Access denied
remote: You must use a personal access token with 'api' scope for Git over HTTP.
"解决 `remote: You must use a personal access token with 'api' scope for Git over HTTP.`"继续阅读
CentOS 9 安装 Nginx 模块 `subs_filter`
sub_filter
和 subs_filter
区别
sub_filter
( 0.7.24):替换响应体(Response Body)中的文本,只能设置一组替换。subs_filter
:替换响应体(Response Body)和响应头(Response Headers)中的文本,可以设置多组替换。
"CentOS 9 安装 Nginx 模块 `subs_filter`"继续阅读
解决 `Warning: the RSA host key for 'github.com' differs from the key for the IP address 'x.x.x.x'`
Warning: the RSA host key for 'github.com' differs from the key for the IP address 'x.x.x.x'
Offending key for IP in /root/.ssh/known_hosts:5
Matching host key in /root/.ssh/known_hosts:9
Are you sure you want to continue connecting (yes/no)?
You can add the RSA host key for github.com
to your server's known_hosts
file to avoid seeing this warning every time you run git pull
. Here's how to do it:
"解决 `Warning: the RSA host key for 'github.com' differs from the key for the IP address 'x.x.x.x'`"继续阅读