-
Linux 之 CentOS yum 安装 Nginx
添加 Nginx 源 方法一 sudo vim /etc/yum.repos.d/nginx.repo 插入内容 Centos6 [nginx] name=nginx repo baseurl
-
Linux 之 CentOS yum 安装 PHP7.2
配置 yum 源 安装EPEL and Remi repository Centos7可以将链接中的6改为7即可 sudo yum install https:
-
Linux 之 CentOS glibc 版本过低安装不了软件
问题 libc.so.6: version `GLIBC_2.14' not found 解决方案 glibc官网下载 查看系统版本 cat
-
Linux 之 CentOS yum 更换镜像
备份原先数据源 mv /etc/yum.repos.d /etc/yum.repos.d.bak 清华大学镜像(推荐) 编辑/etc/yum.repos.d/C
-
Linux 之 Ubuntu apt-get 更换镜像
备份原先数据源 mv /etc/apt/sources.list /etc/apt/sources.list.bak 清华大学镜像(推荐) 以Ubuntu 20
-
Linux 之 CentOS 安装 JDK 及 JRE
查看安装列表 CentOS自带JDK是否已安装 yum list installed | grep java 删除自带 JDK 假使存在自带的JDK,删除Cen
-
Linux 之 Ubuntu 安装 JDK 及 JRE
安装 Jave8 导入Webupd8 PPA sudo add-apt-repository ppa:webupd8team/java sudo apt-g
-
Git 提示 error failed to push some refs to git@github.com
错误信息 error: failed to push some refs to 'git@github.com:....." Updates were rej
2019-03-25, Views: 3566 , Topics: Git
-
Git 提示 You asked me to pull without telling me which branch you...
错误信息 Git未关联本地分支与远程分支,报错如下: You asked me to pull without telling me which branch
2019-03-25, Views: 5704 , Topics: Git
-
Git 提示 refusing to merge unrelated histories
错误提示 git push时提示: fatal: refusing to merge unrelated histories 解决方法 git pull --a
2019-03-25, Views: 3238 , Topics: Git
-
GitHub 访问慢解决方案
2021-04-21 编辑 GitHub访问更多因为DNS解析问题,可自己登陆IPAddress网站查询可用DNS,具体可参考最新文章解决方案:GitHub O
-
Git 命令之查看及设置用户名邮箱
说明 GitHub统计contributions是以邮箱依据的。 查看用户名和邮箱地址 git config user.name git config user
2019-03-23, Views: 4093 , Topics: Git
-
Nginx 配置之屏蔽 IP 访问
查看 IP 访问次数 Nginx日志名为access.log。 awk '{print $1}' access.log |sort |uniq -c|sort
-
Nginx 配置之开启状态检查
查看是否安装所需模块 --with-http_stub_status_module nginx -V 如若未安装改模块,需重新编译安装 ./configure
2019-03-21, Views: 2918 , Topics: Nginx
-
Nginx 配置之开启 Gzip 压缩
配置可供参考 gzip on; gzip_min_length 1k; gzip_buffers 4 16k; #gzip_http_version 1.0;
-
Nginx 配置之解决 413 错误(Request Entity Too Large)
错误信息 Failed to load resource: the server responded with a status of 413 (Reques
2019-03-20, Views: 6375 , Topics: Nginx
-
Nginx 配置之视频防盗链
查看安装的模块 nginx -V 安装 secure_link 模块 如果没有secure_link模块,则需安装。 ./configure --with-ht
-
Nginx 配置之图片防盗链
配置 location ~* ^/uploads/img/.*?\.(jpe?g|png|gif|svg)$ { valid_referers none
-
Nginx 配置之开启缓存过期时间
expires 默认单位:秒。 h:时 m:分 s:秒 y:年 location ~ .*\.(?:jpg|jpeg|gif|png|ico|cur|gz|
-
Nginx 配置之 PHP 路径配置
80 端口对应单个 PHP 服务 server { listen 80; server_name localhost; r