Nginx windows 入门

阅读更多

 

这里介绍windows下nginx的入门例子,个人练手用,这里测试使用的 nginx1.8.1版本,下载后解压到本地即可启动服务。配置文件路径:nginx-1.8.1\conf\nginx.conf。修改好配置文件执行dos命令启动服务。命令如下:

 

// 打开命令行工具,到nginx.exe同级目录,用命令启动/关闭/重启nginx 
 
start nginx  // 启动nginx
nginx -s reload  // 修改配置后重新加载生效
nginx -s reopen  // 重新打开日志文件
nginx -t -c /path/to/nginx.conf  //测试nginx配置文件是否正确

// 关闭nginx:
nginx -s stop  // 快速停止nginx
nginx -s quit  // 完整有序的停止nginx

 

 

nginx下载

 

配置文件设置如下:

#user  nobody;
worker_processes  1;

events {
    worker_connections  1024;
}


http {
    include       mime.types;
    default_type  application/octet-stream;

    sendfile        on;
    #tcp_nopush     on;

    keepalive_timeout  65;

    #gzip  on;
	
	#html文件
    server {
        listen       80;
        server_name  localhost;

        location / {
			# html文件本地路径(修改为文件存放路径)
            root   D:/tools/nginx/source/html;
            index  index.html index.htm;
			charset utf-8;
        }

        location /file/ {
			# 静态资源文件本地路径,和html文件相同服务设置方式。(修改为文件存放路径)
            alias   D:/tools/nginx/source/static/;
        }
	
    }

	#静态文件
	server {
        listen       8001;
        server_name  localhost;
		
        location /file/ {
			# 静态资源文件本地路径,和html文件不同服务设置方式。(修改为文件存放路径)
            alias   D:/tools/nginx/source/static/;
        }
	}
}

 

 

 

html 代码:

 



	
		
		
		
    Nginx Test
	

Nginx 测试页面
静态资源文件和html文件相同服务地址设置方式 静态资源文件和html文件不同服务地址设置方式

 

 

访问方式: 

http://localhost/

 

  • nginx-1.8.1.rar (1 MB)
  • 下载次数: 4
  • source.rar (100.6 KB)
  • 描述: 资源文件
  • 下载次数: 3

你可能感兴趣的:(nginx)