摘要:
bash-5.0# cd /etc/nginx/ bash-5.0# ls cert conf.d fastcgi.conf fastcgi_params mime.types modules nginx.conf scgi_params uwsgi_params bash-5.0# cat ngi 阅读全文
摘要:
安装阿里云源 1、备份 cd /etc/yum.repos.d mkdir backuo mv *.repo backup 2、下载阿里云的yum源 浏览器搜索http://mirros.aliyun.com/ 找到centos和epel 复制进终端 curl -o /etc/yum.repos.d 阅读全文
摘要:
第1章 LNMP单机环境安装 1.Nginx安装 groupadd www -g 1000 useradd www -s /sbin/nologin -M -u 1000 -g 1000 id www cat > /etc/yum.repos.d/nginx.repo << 'EOF' [nginx 阅读全文
摘要:
第41题 概念题: 1.location和rewrite的区别 Nginx location 可以控制访问网站的路径,但是一个server可以有多个location配置。 rewrite 指令可以基于用户请求的RUI通过正则表达式的匹配来进行改写。 rewrite 指令可以存在多条,并且按照次序依次 阅读全文
摘要:
第1章 Nginx rewrite跳转 1.官方地址 https://nginx.org/en/docs/http/ngx_http_rewrite_module.html 2.应用场景 http跳转https 旧站点跳转到新站点 根据终端类型进行跳转到不同页面 根据不同地址跳使用不同的代码目录 3 阅读全文
摘要:
Nginx 进阶 不是太重要: 1.索引模块 2.限速模块 3.认证模块 4.状态模块 5.yum仓库 非常重要: 1.location 2.rewrite 第一章 索引模块 1.官方地址 http://nginx.org/en/docs/http/ngx_http_index_module.htm 阅读全文
摘要:
第一章 Nginx 安装 1.配置Nginx 官方yum源 cat > /etc/yum.repos.d/nginx.repo << 'EOF' [nginx-stable] name=nginx stable repo baseurl=http://nginx.org/packages/cento 阅读全文
摘要:
第32天作业 思考题: 1.如果NFS服务坏了,如何快速恢复? 服务端NFS坏了 #! /bin/bash yum install nfs-utils -y && cat > /etc/exports << EOF /data 172.16.1.0/24(rw,sync,all_squash,ano 阅读全文
摘要:
第31天作业 作业: 1.为什么需要Rsync?他解决了什么问题? Rsync可以在不同主机之间,传输/同步/备份工具 可以解决文件全量备份,增量备份,同步备份的问题 2.什么是服务?什么是配置文件?配置文件的作用是什么? 服务:可运行的程序 + 配置文件 + 持续运行 == 服务 配置文件:就是程 阅读全文
摘要:
期中架构 day31 Rsync Rsync服务模式--服务端配置 1.安装rsync 注意:服务端是backup-41 yum -y install rsync -y 2.创建配置文件 cat > /etc/rsyncd.conf << 'EOF' uid = www gid = www port 阅读全文