Nginx (“engine x”) 是一个高性能的 HTTP 和 反向代理 服务器,也是一个 IMAP/POP3/SMTP 代理服务器。 Nginx 是由 Igor Sysoev 为俄罗斯访问量第二的 Rambler.ru 站点开发的,第一个公开版本0.1.0发布于2004年10月4日。其将源代码以类BSD许可证的形式发布,因它的稳定性、丰富的功能集、示例配置文件和低系统资源的消耗而闻名。2011年6月1日,nginx 1.0.4发布。 如果大家使用Debian或它的衍生版本的系统,可以使用sudo apt-get install nginx 去安装并使用nginx. 在这种情况下 ,默认所安装的configure选项如下: ‘–conf-path=/etc/nginx/nginx.conf’, #配置文件路径,默认是conf/nginx ‘–error-log-path=/var/log/nginx/error.log’, #错误日志路径,默认是/logs/error.log ‘–http-client-body-temp-path=/var/lib/nginx/body’, #指定http客户端请求缓存文件存放目录的路径 ‘–http-fastcgi-temp-path=/var/lib/nginx/fastcgi’, #指定http FastCGI缓存文件存放目录的路径 ‘–http-log-path=/var/log/nginx/access.log’, #指定http默认访问日志的路径 ‘–http-proxy-temp-path=/var/lib/nginx/proxy’, #指定http反向代理缓存文件存放目录 ‘–http-scgi-temp-path=/var/lib/nginx/scgi’, #指定http sigi缓存文件存放目录的路径 ‘–http-uwsgi-temp-path=/var/lib/nginx/uwsgi’, #指定http uwsgi缓存文件存放目录的路径 ‘–lock-path=/var/lock/nginx.lock’, # 指定nginx.lock文件的路径 ‘–pid-path=/var/run/nginx.pid’, # 指定nginx.pid文件的路径,默认是/logs/nginx.pid ‘–with-debug’, #启用调试日志 ‘–with-http_addition_module’, #启用http_addition_module ‘–with-http_dav_module’, #启用http_dav_module ‘–with-http_geoip_module’, ‘–with-http_gzip_static_module’, ‘–with-http_image_filter_module’, ‘–with-http_realip_module’, ‘–with-http_stub_status_module’, ‘–with-http_ssl_module’, ‘–with-http_sub_module’, ‘–with-http_xslt_module’, ‘–with-ipv6′, ‘–with-sha1=/usr/include/openssl’, ‘–with-md5=/usr/include/openssl’, ‘–with-mail’, ‘–with-mail_ssl_module’, ‘–add-module=/build/buildd/nginx-0.8.54/debian/modules/nginx-upstream-fair’ 安装完成后Nginx所使用的目录如下 /usr/sbin/nginx /usr/share/nginx /usr/share/doc/nginx /etc/nginx /etc/init.d/nginx /etc/default/nginx /etc/logrotate.d/nginx /etc/ufw/applications.d/nginx /var/lib/nginx /var/lib/update-rc.d/nginx /var/log/nginx 网站文件可以放就在/usr/share/nginx/www 下. |