美文网首页
Nginx基本配置

Nginx基本配置

作者: 曾经的飞舞梦 | 来源:发表于2019-06-29 17:34 被阅读0次

--modules-path=/usr/lib64/nginx/modules                模块路径

--pid-path=/var/run/nginx.pid                                    程序ID

--lock-path=/var/run/nginx.locak                            锁路径,防止重新启动Nginx

--http-client-body-temp-path=/var/cache/nginx/client_temp        缓存

--http-fastcgi-temp-path=/var/cache/nginx/proxy_temp       代理缓存

--http-fastcgit-temp-path=/var/cache/nginx/fastcgi_temp      php缓存

--http-uwsgi-temp-path=/var/cache/nginx/uwsgi_temp    python缓存

--with-compat            启动模块兼容性

--user=nginx            用户

--group=nginx            组

--with-file-aio        使用nginx的aio特性会大大提高性能,比如图片站的特点是大量的IO操作,Nginx  AIO不用等待每次IO的结果,有助于并发处理大量的IO和提高Nginx处理效率

        AIO的优点就是能够提交多个IO请求给内核,然后直接由内核的IO调度算法去处理这些请求(directio),这样的话,内核就有可能执行一些合并,节约了读取文件的处理时间,就是异步非阻塞。

--with-threads        多线程模块

--with-http_addition_module   在响应之前或者响应之后追加文本内容,比如想在站点底部追加一个js或者css,可以使用这个模块来实现。

--with-http_auth_request_module        认证模块

--with-http_dav_modeule                     使应用程可直接对webserver直接读写,并支持文件锁定及解锁,还支持文件的版本控制。启用对WebDav协议支持。

--with-http_flv_module        Nginx增加MP4,FLV视频支持模块

--with-http_gunzip_module        压缩模块

--with-http_mp4_module            多媒体模块

--with-http_random_index_module        Nginx显示随机首页模块,对隐藏文件不起作用。

--with_http_realip_module                Nginx获取真实IP模块

--with-http_secure_link_module        Nginx安全下载模块

--with-http_sice_module            Nginx中文文档

--wiht-http-_ssl_module            安全模块

--with-http_stub_status_module          访问状态  

--wiht-http_stub_module            Nginx替换网站响应内容

--with-mail            邮件客户端

--with-stream            负载均衡模块,Nginx从1.9.0开始,新增加了一个ngx_stream_core_module模块,默认编译的时候该模块并未编译进去,需要编译的时候加--with-stream,使其支持stream代理。用来实现四层协议的转发,代理或者负载均衡。

--with-stream_realip_module            

相关文章

  • 2019-01-18

    nginx的基本配置和SSL的http跳转https基本配置 在nginx中的nginx.conf下配置 http...

  • Nginx命令操作

    一.基本操作 启动 nginx 检查配置文件 nginx -t 强制停止 nginx -s quit 平滑加载配置...

  • nginx tomcat 搭建web

    本文实验环境在windows下,旨在快速掌握nginx基本使用配置 1启动nginx 进入nginx 目录: 配置...

  • nginx配置指南

    1 基本配置 2 基本命令 2.1 重新载入配置文件 2.2 重启nginx 2.3 停止nginx 其他说明 在...

  • nginx基本配置、负载均衡、常用操作

    整理了nginx的相关资料,包括 基本配置 负载均衡 常用操作命令 基本配置 nginx.conf,有注释http...

  • [Nginx]01 - 安装以及基本配置

    目录 Nginx基础概念 安装Nginx与基本命令 配置nginx 初次使用nginx 1. Nginx基础概念 ...

  • Nginx(三) 配置文件

    一、nginx.conf 配置文件概述 nginx 的配置文件主要分为以下三个部分:基本配置、events配置和 ...

  • 一.CentOS7手动部署WordPress网站

    前提: 开始安装LNMP基本环境: 1.安装及配置nginx 安装: 配置: 1.运行以下命令备份Nginx配置文...

  • 01Nginx的配置文件总览

    nginx.conf 基本配置 抽象处理下,nginx的最简单的框架

  • Nginx 基本配置

    server { listen 80; server_name _; root /data1; loca...

网友评论

      本文标题:Nginx基本配置

      本文链接:https://www.haomeiwen.com/subject/nyzucctx.html