欢迎您访问程序员文章站本站旨在为大家提供分享程序员计算机编程知识!
您现在的位置是: 首页

nginx服务器

程序员文章站 2022-06-11 16:21:45
...

Web服务器对比

  • Unix和linux平台下
    -Apache、Nginx、Tengine、Lighttpd
    -Tomcat、IBM WebSphere、Jboss
  • Windows平台下
    -微软公司的IIS(Internet Information Server)

Nginx简介

  • Nginx(“enginex”)
    -是俄罗斯人编写的十分轻量级的HTTP服务器
    -是一个高性能的HTTP和反向代理服务器,同时也是一个IMAP/POP3/SMTP代理服务器
  • Nginx配置文件及目录
    -/usr/local/nginx //安装目录
    -conf/nginx.conf//主配置文件
    -html/网页目录
    -logs//日志文件
    -sbin/nginx//启动脚本

Nginx进程管理

  • 启动Nginx服务
    ]#/usr/local/nginx/sbin/nginx
  • 常用选项
    -V:查看编译参数
    -c:指定配置文件,启动服务

Nginx配置解析

  • 配置文件结构
  • 全局配置
http{ 			
				... ...
					server{
					.		.. ...
							location/{
										... ...
				  		 }
					}
				}		
  • 全局选项
  • user nginx //进程所有者
  • worker_processes 1 ; //启动进程数量
  • error_log /var/log/nginx/error.log;//日志文件
  • pid /var/run/nginx.pid //PID文件
  • events {
    worker_connection 1024;
    } //单个进程最大并发量
  • 配置容器
http {
  	... ...
  server {							//定义虚拟主机
     	listen 80;
 	    server_name location;
  		location / {					//发布目录
 			root html;
 				index index.html index.htm;
 		}
	 }
 } 
  • 用户认证
location / {
				root html;
				index index.html;
			auth_basic "auth-domain";
			auth_basic_user_file 	/usr/local/nginx/pass;
			}