default.conf配置 外部访问支持http和https,但是nginx内部统一把请求转换成https转发出去 nginx.conf配置 转发请求对应的header参数:underscores_in_headers on; 超时时间配置(全局): docker操作 启动Nginx命令: 反向代 ...
分类:
其他好文 时间:
2020-03-16 23:24:08
阅读次数:
75
参考:https://www.cnblogs.com/misswangxing/p/10669444.html k8s:一个容器管理系统 名词:Master节点。Node节点 Linux运维没有系统的学习过。只是简简单单的看看文档。 刚开始写的python项目都是采用uwsgi启动,nginx搭建反 ...
分类:
其他好文 时间:
2020-02-26 10:24:15
阅读次数:
96
[root@Alen conf]# vim nginx.conf [root@Alen conf]# cat nginx.conf http { # log_format 关键字定义日志的格式 # $remote_addr 源端的IP地址 # $time_local 当前的时间 include mi ...
分类:
Web程序 时间:
2020-02-12 18:39:53
阅读次数:
82
1) 安装依赖 prce库 进入/usr/local目录,依次键入以下命令: 下载压缩包:$ wget https://ftp.pcre.org/pub/pcre/pcre-8.43.tar.gz 解压缩:$ tar -zxf pcre-8.42.tar.gz 进入解压后目录:$ cd pcre-8 ...
分类:
系统相关 时间:
2020-01-07 18:20:40
阅读次数:
89
1.搭建nginx直播2.使用安卓推流3.使用html播放
分类:
其他好文 时间:
2019-12-31 23:43:23
阅读次数:
78
第一步:安装vsftpd提供ftp服务 第二步:安装Nginx提供http服务 1.安装准备:安装Nginx环境 a) gcc 安装nginx需要先将官网下载的源码进行编译,编译依赖gcc环境,如果没有gcc环境,需要安装gcc。 安装gcc:yum install gcc-c++ b) PCRE ...
分类:
其他好文 时间:
2019-12-19 20:56:31
阅读次数:
83
一、安装gcc yum install gcc-c++ -y 二、安装nginx所需要的依赖库 yum -y install zlib-devel openssl-devel pcre-devel 三、如有安装老版本,则卸载。 查看:find -name nginx 卸载:yum remove ng ...
分类:
其他好文 时间:
2019-12-08 12:46:39
阅读次数:
98
nginx搭建 1. 清除之前nginx环境 2. 安装编译工具以及库文件 3. 安装pcre 4. 安装nginx 5. nginx的启动 6. 安装完后浏览器访问服务器IP 若显示Welcome to nginx!则配置成功 ...
分类:
系统相关 时间:
2019-11-25 15:25:35
阅读次数:
79
一、nginx搭建集群入门 https://www.cnblogs.com/XJJD/p/10308840.html 二、Nginx服务器之负载均衡策略(6种) https://www.cnblogs.com/1214804270hacker/p/9325150.html 三、Nginx与Tomca ...
分类:
其他好文 时间:
2019-11-21 12:08:17
阅读次数:
298
在一些项目里面,有时候需要访问图片的时候。相信很多人都是的直接把文件放到项目里面的; 今天在这里给大家介绍的是利用nginx 搭建图片服务器,直接访问磁盘上的图片。 方法一(使用root关键字): ps:访问的时候他是去E:/pic/img这个目录找了。即:它会在root 后面这个目录再加一层/im ...