nginx
文章平均质量分 77
ShuaiFanPi
这个作者很懒,什么都没留下…
展开
-
nginx 配置参数实践
1 location匹配的是:域名/xxx 或者 协议://ip:port/xxx中xxx的部分请求: http://example.com/static/img/logo.jpg,即/static/img/logo.jpg是nginx考察的匹配路径2 精确匹配 =location = /static/img/logo.jpg 命中匹配,结束匹配3 前缀匹配3.1 普通前缀匹配l...原创 2018-09-05 17:35:37 · 400 阅读 · 0 评论 -
nginx安装
1 安装gcc依赖yum install -y gcc gcc-c++2 安装pcre软件包(使nginx支持http rewrite模块)yum install -y pcreyum install -y pcre-devel3 安装openssl-devel(使nginx支持ssl)yum install -y openssl-devel4 安装zlib库支持yum ...原创 2019-05-24 15:42:41 · 209 阅读 · 0 评论 -
nginx 配置文件关键字
L1location / { root html; index index.html index.htm;}L1可以匹配到请求127.0.0.1 、127.0.0.1/root html 是一个相对路径,表示以ng安装路径下html目录查找文件index.htmlL2location /a { root D:/plugins/nginx-1....原创 2019-08-24 23:22:02 · 1308 阅读 · 0 评论 -
浏览器 nginx 允许跨域请求
参考文档http://www.ruanyifeng.com/blog/2016/04/cors.html1 nginx允许跨域配置:location / { add_header Access-Control-Allow-Origin *; add_header Access-Control-Allow-Methods 'GET, POST, OPTIONS'; ad...原创 2019-08-25 14:54:08 · 1518 阅读 · 0 评论 -
nginx Content-Type MIME mime.types
nginx配置中有一般会有配置:include mime.types;用来引入文件类型和MIME类型映射表,在nginx安装目录的conf下有mime.types配置文件,打开配置可见:types { text/html html htm shtml; text/css...原创 2019-08-25 15:52:35 · 6095 阅读 · 1 评论