“Nginx (“engine x”) 是一个高机能的 HTTP 和反向署理处事器,也是一个 IMAP/POP3/SMTP署理处事器。 Nginx 是由 Igor Sysoev 为俄罗斯会见量第二的 Rambler.ru站点开拓的,它已经在该站点运行高出两年半了。Igor 将源代码以类BSD许可证的形式宣布。Nginx 逾越 Apache 的高机能和不变性,使得海内利用 Nginx 作为 Web处事器的网站也越来越多,个中包罗新浪博客、新浪播客、网易新闻等派别网站频道,六间房、56.com等视频分享网站,Discuz!官方论坛、水木社区等知名论坛,豆瓣、YUPOO相册、国内SNS、迅雷在线等新兴Web 2.0网站。”
安装:
序列号 | CPU | RAM | HDD | 带宽 | 售价(美元) | 免费试用 |
---|---|---|---|---|---|---|
香港服务器1 | E5-2620 | 32G | 1T HDD | 50M/无限流量 | $196.00 | 立即申请 |
香港服务器2 | E5-2650 | 32G | 1T HDD | 50M/无限流量 | $256.00 | 立即申请 |
香港服务器3 | E5-2680 | 32G | 1T HDD | 50M/无限流量 | $316.00 | 立即申请 |
香港服务器4 | E5-2690 | 32G | 1T HDD | 50M/无限流量 | $336.00 | 立即申请 |
香港服务器5 | E5-2697 | 32G | 1T HDD | 50M/无限流量 | $376.00 | 立即申请 |
香港服务器6 | E5-2620*2 | 32G | 1T HDD | 50M/无限流量 | $376.00 | 立即申请 |
香港服务器7 | E5-2650*2 | 32G | 1T HDD | 50M/无限流量 | $436.00 | 立即申请 |
香港服务器8 | E5-2680*2 | 32G | 1T HDD | 50M/无限流量 | $476.00 | 立即申请 |
香港服务器9 | E5-2690*2 | 32G | 1T HDD | 50M/无限流量 | $556.00 | 立即申请 |
香港服务器10 | E5-2697*2 | 32G | 1T HDD | 50M/无限流量 | $596.00 | 立即申请 |
香港服务器11 | E5-2680v4*2 | 32G | 1T HDD | 50M/无限流量 | $696.00 | 立即申请 |
香港服务器12 | E5-2698v4*2 | 32G | 1T HDD | 50M/无限流量 | $796.00 | 立即申请 |
为了确保能在 Nginx 中利用正则表达式举办更机动的设置,安装之前需要确定系统是否安装有 PCRE(PerlCompatible Regular Expressions)包。您可以到ftp://ftp.csx.cam.ac.uk/pub/software/programming/pcre/ 下载最新的 PCRE源码包,利用下面呼吁下载编译和安装 PCRE 包:
# wgetftp://ftp.csx.cam.ac.uk/pub/software/programming/pcre/pcre-8.12.tar.gz# tar zxvf pcre-8.12.tar.gz解压后,在设置nginx的时候指定到这个目次即可。
下面开始nginx的安装:
# wget http://sysoev.ru/nginx/nginx-1.0.4.tar.gz# tar zxvf nginx-1.0.4.tar.gz# cd nginx-1.0.4# ./configure --prefix=/usr/local/www/nginx--with-pcre=/yujialin/pcre-8.12 --with-http_stub_status_module--with-http_gzip_static_module# make# make install
个中参数 –with-http_stub_status_module 是为了启用 nginx 的 NginxStatus成果,用来监控 Nginx 的当前状态。至于prefix,就不消我烦琐了。注:由于在网上搜到的许多几何ngnix的源码下载地点打开之后是ERROR404,上面的谁人网址http://sysoev.ru/nginx/nginx-0.8.32.tar.gz是来历于nginx官方的俄文网站,停止2010年1月28日最新的不变版。
假如你在make 的时候呈现“make: *** 没有法则可以建设“default”需要的方针“build”。遏制。”,那么说明你跟我犯了同一个错误,香港站群服务器美国服务器,你必然没有留意configure时的错误提示:
./configure: error: the HTTP cache module requires md5functionsfrom OpenSSL library. You can either disable the module byusing–without-http-cache option, or install the OpenSSL library into thesystem,or build the OpenSSL library statically from the source with nginxby using–with-http_ssl_module –with-openssl= options.
看清楚否?没有opensll library!怎么办?装呗!
# sudo apt-get install openssl# sudo apt-get install libssl-dev
装完之后呈现的提示也很有用的,先记下来:
Configuration summary+ using system PCRE library+ OpenSSL library is not used+ md5: using system crypto library+ sha1 library is not used+ using system zlib library
nginx path prefix: “/usr/local/nginx”nginx binary file: “/usr/local/nginx/sbin/nginx”nginx configuration prefix: “/usr/local/nginx/conf”nginx configuration file: “/usr/local/nginx/conf/nginx.conf”nginx pid file: “/usr/local/nginx/logs/nginx.pid”nginx error log file: “/usr/local/nginx/logs/error.log”nginx http access log file: “/usr/local/nginx/logs/access.log”nginx http client request body temporary files:“client_body_temp”nginx http proxy temporary files: “proxy_temp”nginx http fastcgi temporary files: “fastcgi_temp”
安装乐成后 /usr/local/www/nginx 目次下有四个子目次别离是:conf、html、logs、sbin 。个中Nginx 的设置文件存放于 conf/nginx.conf,Nginx 只有一个措施文件位于 sbin 目次下的 nginx文件。确保系统的 80 端口没被其他措施占用,运行 sbin/nginx 呼吁来启动 Nginx,打开欣赏器会见此呆板的IP,假如欣赏器呈现 Welcome to nginx! 则暗示 Nginx 已经安装并运行乐成。