zoukankan      html  css  js  c++  java
  • Nginx安装

    prerequisites

    1. need gcc compiler
        apt-get install install build-essentials
    1. pcre
        apt-get install libpcre3 libpcre3-dev
    1. install zlib library
        apt-get install zlib1g zlib1g-dev
    1. For https (OenSSL)
        apt-get install openssl openssl-dev

    Configure options

    the simple way

        # move to nginx source directory
        > ./configure
        > make
        > make install

    The Module Options

    • Modules enabled by default

      --without-http_charset_module Disables the Charset module for
      --without-http_gzip_module Disables the Gzip compression module.
      --without-http_ssi_module Disables the Server Side Include module.
      --without-http_userid_module Disables the User ID module providing
      user identification via cookies.
      --without-http_access_module Disables the Access module allowing
      access configuration for IP address
      ranges.
      --without-http_auth_basic_module Disables the Basic Authentication module.
      --without-http_autoindex_module Disables the Automatic Index module.
      --without-http_geo_module Disables the Geo module allowing you to
      define variables depending on IP address
      ranges.
      --without-http_map_module Disables the Map module that allows you
      to declare map blocks.
      --without-http_referer_module Disables the Referer control module.
      --without-http_rewrite_module Disables the Rewrite module.
      --without-http_proxy_module Description
      --without-http_fastcgi_module Disables the FastCGI, uWSGI, or SCGI
      modules for interacting with respectively
      FastCGI, uWSGI, or SCGI processes.
      Disables the Proxy module for
      transferring requests to other servers.
      --without-http_uwsgi_module
      --without-http_scgi_module
      --without-http_memcached_module
      Disables the Memcached module for
      interacting with the memcache daemon.
      --without-http_limit_conn_module Disables the Limit Connections module
      for restricting resource usage according to
      defined zones.
      --without-http_limit_req_module Disables the Limit Requests module
      allowing you to limit the amount of
      requests per user.
      --without-http_empty_gif_module Disables the Empty Gif module for
      serving a blank GIF image from memory.
      --without-http_browser_module Disables the Browser module for
      interpreting the User Agent string.
      --without-http_upstream_ip_hash_
      module Disables the Upstream module for
      configuring load-balanced architectures.
      --without-http_upstream_least_
      conn_module
  • 相关阅读:
    当数据库结构改变时,需要将数据库删除再创建
    命名空间“System.Web.Mvc”中不存在类型或命名空间“Ajax”(是否缺少程序集引用?)
    jqGrid 各种参数 详解
    二维数组最小路径和
    动态规划:最大连续子序列和
    最长递增子序列
    java单例模式的几种实现
    java多线程的实现方法
    sleep与wait的区别
    数组旋转
  • 原文地址:https://www.cnblogs.com/nagi/p/nginx_install.html
Copyright © 2011-2022 走看看