windows下安装nginx很容易,在官方下载zip安装包解压,双击执行nginx.exe就可以使用了,当前最新版本是nginx/Windows-1.10.3。这里主要说下常用的一些命令还有与tomcat建立关联后的配置。
下载地址:http://nginx.org/en/download.html
1,nginx常用命令(cmd在nginx目录下执行)
1,启动nginx命令
start nginx
此命令和双击执行nginx.exe是一样的。有3个办法确认nginx是否已成功启动:
方式1,运行http://localhost 是否能看到welcome nginx。
方式2,在nginx的logs目录下是否能看到nginx.pid文件,如果有说明启动成功。
方式3,查看是否存在nginx进程,见命令3
2,关闭nginx命令
nginx -s stop
3,查看nginx进程
tasklist /fi "imagename eq nginx.exe"
这个命令可能会出现“错误: Out of memory”,正确的情况下会显示内存使用等情况:
C:\nginx-1.11.10>tasklist /fi "imagename eq nginx.exe"
Image Name PID Session Name Session Mem Usage
=============== ======== ============== ========== ============
nginx.exe 652 Console 0 2 780 K
nginx.exe 1332 Console 0 3 112 K
2,nginx的配置(nginx/conf目录下的nginx.conf文件)
2.1 并发配置(最大并发数为1024)
events {
worker_connections 1024;
}
2.2,http部分的配置
http {
include mime.types;
default_type application/octet-stream;
sendfile on;
server {
listen 80;
server_name localhost;
...
}
}
1、include mime.types,引入mime.types文件所声明的文件扩展名与文件类型映射
2、application/octet-stream,默认使用application/octet-stream
3、sendfile,开启高效文件传输模式
4、服务部分监听本机“localhost”的80端口
2.2,转发服务配置
server {
listen 443 ssl;
server_name localhost;
ssl_certificate cert.pem;
ssl_certificate_key cert.key;
ssl_session_timeout 5m;
ssl_protocols TLSv1;
ssl_ciphers HIGH:!ADH:!EXPORT56:RC4+RSA:+MEDIUM;
ssl_prefer_server_ciphers on;
location / {
root html;
index index.html index.htm;
proxy_set_header Host $host;
proxy_set_header X-Real-IP $remote_addr;
proxy_set_header X-Forwarded-Proto $scheme;
proxy_set_header X-Forwarded-For $proxy_add_x_forwarded_for;
proxy_pass http://localhost:8080;
}
}
1、监听433端口(https的ssl安全通道)
2、启用安全证书(ssl_certificate、ssl_certificate_key)
其中.pem文件是由.jks文件生成的(.jks文件的生成参考http://jingyan.baidu.com/article/b0b63dbfe18eff4a483070f4.html)
其中.key文件是.pem文件中的内容(记事本打开.pem拷贝-----BEGIN RSA PRIVATE KEY-----部分到新的文本文件修改扩展名为.key)
3、加密套件(ssl_ciphers) 这里配置的兼容windowsXP下的IE8访问
4、将请求转到目标的8080端口
3,与tomcat关联配置
在tomcat的server.xml底部的<Host>中增加以下代码跟nginx关联并确保Connector配置了port="8080" 端口:
<Valve className="org.apache.catalina.valves.RemoteIpValve" remoteIpHeader="X-Forwarded-For"
protocolHeader="X-Forwarded-Proto" protocolHeaderHttpsValue="https" httpsServerPort="443"/>
4,日志
日志默认位于NGINX_HOME/logs/,可见:
1、access.log,访问日志
2、error.log,异常日志
3、nginx.pid,进程(仅在启动nginx后才有此日志)
另:关于nginx的详细配置可见官方网站(http://nginx.org/en/docs/windows.html)
或下面的博客文章:
(http://www.cnblogs.com/sunxucool/p/3225818.html)
网友评论