预览加载中,请您耐心等待几秒...
1/7
2/7
3/7
4/7
5/7
6/7
7/7

在线预览结束,喜欢就下载吧,查找使用更方便

如果您无法下载资料,请参考说明:

1、部分资料下载需要金币,请确保您的账户上有足够的金币

2、已购买过的文档,再次下载不重复扣费

3、资料包下载后请先用软件解压,在使用对应软件打开

文档来源:http://www.phphubei.com 目的:搭建Nginx与tomcat整合,用Nginx代替apache 步骤: 一、安装Nginx 1、上传nginx-0.7.63.tar.gz至/usr/local 2、执行如下命令解压nginx: 1.#cd/usr/local 2.#tarzxvfnginx-0.7.63.tar.gz 3、编译安装nginx 1.#cdnginx-0.7.63 2.#./configure--with-http_stub_status_module--with-http_ssl_module#启动server状态页和 https模块 执行完后会提示一个错误,说缺少PCRElibrary这个是HTTPRewrite模块,也即是url静 态化的包 可上传pcre-7.9.tar.gz,输入如下命令安装: 1.#tarzxvfpcre-7.9.tar.gz 2.#cdpcre-7.9 3.#./configure 4.#make 5.#makeinstall 安装pcre成功后,继续安装nginx 如果是ubuntu或Debian系统请先安装 #apt-getinstalllibpcre3libpcre3-dev 原文: IneedtocompilefewapplicationandIneedPerl5CompatibleRegularExpressionLibrary (PCRE).UnderCentOSIcanuseapackagecalledpcre-devel,butDebiandonothavethesame. HowdoIinstallpcre-develunderDebian/UbuntuLinux? Perl-compatibleregularexpressionlibrary.PCREhasitsownnativeAPI,butasetof"wrapper" 文档来源:http://www.phphubei.com 文档来源:http://www.phphubei.com functionsthatarebasedonthePOSIXAPIarealsosuppliedinthelibrarylibpcreposix.Notethat thisjustprovidesaPOSIXcallinginterfacetoPCRE:theregularexpressionsthemselvesstill followPerlsyntaxandsemantics.TheheaderfileforthePOSIX-stylefunctionsiscalled pcreposix.h.ToinstallPCRE,typethyfollowingcommand: #apt-getupdate #apt-getinstalllibpcre3libpcre3-dev 1.#cdnginx-0.7.63 2.#./configure 3.#make 4.#makeinstall 4、nginx安装成功后的安装目录为/usr/local/nginx 在conf文件夹中新建proxy.conf,用于配置一些代理参数,内容如下: 01.#!nginx(-) 02.#proxy.conf 03.proxy_redirectoff; 04.proxy_set_headerHost$host; 05.proxy_set_headerX-Real-IP$remote_addr;#获取真实ip 06.#proxy_set_headerX-Forwarded-For$proxy_add_x_forwarded_for;#获取代理者的真 实ip 07.client_max_body_size10m; 08.client_body_buffer_size128k; 09.proxy_connect_timeout90; 10.proxy_send_timeout90; 11.proxy_read_timeout90; 12.proxy_buffer_size4k; 13.proxy_buffers432k; 14.proxy_busy_buffers_size64k; 15.proxy_temp_file_write_size64k; 编辑安装目录下conf文件夹中的nginx.conf,输入如下内容 001.#运行nginx所在的用户名和用户组 002.#userwwwwww; 003. 004.#启动进程数 005.worker_processes8; 006.#全局错误日志及PID文件 文档来源:http://www.phphubei.com