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
  • 相关阅读:
    java发送邮件..转
    SSHE框架整合(增删改查)
    easyui-conbotree树形下拉框。。。转
    spring和Hibernate整合
    php实现注册
    原生ajax实现登录(一部分代码)
    Apache 与 php的环境搭建
    SSH框架整合(代码加文字解释)
    数据库中树形列表(以easyui的tree为例)
    SVN源代码的版本控制系统使用简介
  • 原文地址:https://www.cnblogs.com/nagi/p/nginx_install.html
Copyright © 2011-2022 走看看