zoukankan      html  css  js  c++  java
  • nginx-(/usr/local/nginx)配置编译

    ./configure 
    --prefix=/usr/local/nginx 
    --sbin-path=/usr/local/nginx/sbin/nginx 
    --conf-path=/usr/local/nginx/conf/nginx.conf 
    --error-log-path=/usr/local/nginx/logs/error.log 
    --http-log-path=/usr/local/nginx/logs/access.log 
    --pid-path=/usr/local/nginx/var/nginx.pid 
    --lock-path=/usr/local/nginx/var/nginx.lock 
    --http-client-body-temp-path=/dev/shm//nginx_temp/client_body 
    --http-proxy-temp-path=/dev/shm/nginx_temp/proxy 
    --http-fastcgi-temp-path=/dev/shm/nginx_temp/fastcgi 
    --user=www 
    --group=www 
    --without-select_module 
    --without-poll_module 
    --with-http_realip_module 
    --with-http_sub_module 
    --with-http_gzip_static_module 
    --with-http_stub_status_module 
    --without-http_ssi_module 
    --without-http_userid_module 
    --without-http_geo_module 
    --without-http_memcached_module 
    --without-http_map_module 
    --without-mail_pop3_module 
    --without-mail_imap_module 
    --without-mail_smtp_module 
    
    --with-pcre
  • 相关阅读:
    intel instruction 指令速查
    WinDbg双机调试配置
    MSDN上关于WinDbg的手册
    build temu error about SDL
    taintCheck的实现
    Vim使用taglist功能
    Windows编写driver
    cabal替代脚本
    怎样理解Functor与Monad
    haskell基本语法
  • 原文地址:https://www.cnblogs.com/baiquan/p/6098582.html
Copyright © 2011-2022 走看看