Nginx 安装和简单配置
当前时间:2019年8月,最新稳定版为:nginx-1.16.1 官网地址:https://nginx.org/en/ 下载地址:https://nginx.org/en/download.html Windows 下载地…
一份简单够用的 Nginx Location 配置讲解
Location 是 Nginx 中一个非常核心的配置,这篇重点讲解一下 Location 的配置问题以及一些注意事项。 语法 关于 Location,举个简单的配置例子: http…
使用 cloudflare 和 nginx 加速任意站点
往往有很多站点,虽然后端速度还可以,但是由于服务器在美帝,导致速度慢的抠脚,用的时候简直崩溃。众所周知,CDN是互联网重要的基础设施,然而,某…
在 Windows 搭建 Nginx+PHP+MySQL 运行环境
主要流程 下载安装包 安装 Nginx 安装 PHP 连接 Nginx 和 PHP 编写启动脚本代替命令行启动 Nginx 和 PHP 安装 MySQL 步骤一、安装包下载 Nginx 下载:…
Nginx 教程从入门到精通 运维生存时间 TTLSA 出品
Nginx (engine x) 是一个高性能的 HTTP 和反向代理 Web 服务器,同时也提供了 IMAP/POP3/SMTP 服务。在 BSD-like 协议下发行。其特点是占有内存少,并…
使用 Nginx 静态网站配置
默认配置 cd /etc/nginx/conf.d/ sudo vi default.conf 改写为: server{ listen 80 default return 404 } 如果不返回 404,那么指向本机的域名,如果…
使用 yum 安装 nginx
nginx 用于反向代理到不同的 node 服务上去,如: abc.com => node@18080 def.com => node@18081 yum 简介 yum,是Yellow dog Updater, Modified …
ngx_http_html_sanitize_module HTML 过滤器模块
ngx_http_html_sanitize_module - 它基于作为 HTML5 解析器的 google 的 gumbo-parser 和作为内联 CSS 解析器的 hackers-painters 的 katana-parser …
ngx_http_ipip_module 为 Nginx 集成 ipip 的插件
如何使用 为 ngx_http_ipip_module 设置 nginx 配置如下: http { ipip_ip_datx /xx/real_ip.datx ipip_phone_txt /xx/real_phone.txt server { liste…
实战开发一个 Nginx 扩展(Nginx Module)
nginx_module_echo 使用 echo 指令输出一个字符串 Nginx 版本 Nginx1.0.10 https://github.com/nginx/nginx/releases/tag/release-1.0.10 开发环境 OS…
Nginx 安装运营维护入门教程
Nginx 是一款面向性能设计的 HTTP 服务器,能反向代理 HTTP,HTTPS 和邮件相关(SMTP,POP3,IMAP)的协议链接。并且提供了负载均衡以及 HTTP 缓存。…