首页
Linux
服务部署
Nginx
MySQL
Docker
Jenkins
Python
Golang
前端
javascript
react
其它
传送门
cn2linux
行动起来,活在当下
累计撰写
128
篇文章
累计创建
1
个标签
累计收到
0
条评论
栏目
首页
Linux
服务部署
Nginx
MySQL
Docker
Jenkins
Python
Golang
前端
javascript
react
其它
传送门
目 录
CONTENT
最新文章
服务部署 编译PHP7.4
设置环境变量 export USER=www export PHP_VERSION=7.4.33 export CPUS=$(grep 'cores' /proc/cpuinfo |wc -l) 创建系统账号 id ${USER}||useradd ${USER} -M -s /usr/bin/f
2023-12-22
20
0
0
服务部署
Nginx HTTP 跳转到 HTTPS
基于协议判断并跳转 if ($scheme = http ) { return 301 https://$host$request_uri; } 基于端口判断并跳转 if ($server_port = 80 ) { return 301 https://$host$request_uri
2023-12-22
12
0
0
Nginx
容器部署 Poste Mail
安装部署: docker-compse 部署 version: '3.7' services: mailserver: image: analogic/poste.io restart: unless-stopped hostname: mail.cn2linux.co
2023-12-16
25
0
0
服务部署
Google Cloud 自定义 GCE 主机名
设置变量 hostname你要定义的主机名 HOSTNAME=xxxxx echo ${HOSTNAME}> /etc/hostname sudo dnf remove yum-cron -y sed -i 's/google_set_hostname/:/g' /etc/dhcp/dhclie
2023-12-16
53
0
0
Linux
RockyLinux 扩展XFS文件系统
扩容XFS根系统 安装工具 dnf install cloud-utils-growpart # 扩展分区 growpart /dev/vda 2 # 扩容分区 xfs_growfs -d / https://www.cnblogs.com/fengdejiyixx/p/14061128.html
2023-12-16
51
0
0
草稿
服务部署 Rocky Linux 8 安装 Docker
卸载 Podman Rocky Linux 默认安装了 Podman,需要先卸载。否则会和 Docker 依赖组件冲突。 yum -y erase podman buildah 添加 repo 源 # 添加 Docker Repo dnf config-manager --add-repo=http
2023-12-16
166
0
0
服务部署
nginx 反代 Cloudflare 出现502错误
在尝试使用 Nginx 反向代理使用了 Cloudflare 的站点时,报错 502 Bad Gateway server 标签添加: proxy_ssl_name $host; proxy_ssl_server_name on;
2023-12-16
56
0
0
Nginx
服务部署 NaiveProxy
安装部署 安装GO wget "https://go.dev/dl/$(curl https://go.dev/VERSION?m=text).linux-amd64.tar.gz" tar -xf go*.linux-amd64.tar.gz -C /usr/local/ echo 'export
2023-12-16
122
0
0
服务部署
Debian 10/11更换国内源
备份源 sudo cp /etc/apt/sources.list /etc/apt/sources.list_bak 切换源地址(切换任意一个即可) 切换中国科技大学 sudo sed -i 's/deb.debian.org/mirr
2023-12-16
26
0
0
Linux
命令 rename
替换特定字段 把当前目录下的所有带AA文件或者目录替换成aa rename "s/AA/aa/" * 参考网址 [每天学习一个命令: rename 批量修改文件名](https://einverne.github.io/post/2018/01/rename-files-batch.
2023-12-16
14
0
0
1
2
3
4
5
...
13