淘先锋技术网

首页 1 2 3 4 5 6 7

目前,网站所采用的的服务器主要有传统的APache和04年发布的Nginx,前者出现时间久,就导致了现在世界上大多数重量型网站采用的都是Apache架构,至于为什么后来又出现了Nginx架构,纯粹因为采用前者的网站已经越来越不适应现在高并发量请求的实际需求了。比较著名的某宝的服务器架构就是基于Nginx魔改的Tengine,你想想如果用Apache部署淘宝服务器,那得需要多少服务器资源才能支撑那么大的运算量需求。现在已经有越来越多的网站采用Nginx架构的服务器,至于为什么还有那么多Apache服务器的网站,是因为网站更换架构的成本还不如重新弄个新的网站,反正也还能将就着用。

下面的服务器环境为Ubuntu18.04,Nginx版本为1.14,本篇文章主要是记录自己使用nginx的过程。

1、Nginx安装

sudo apt install nginx

不指定版本的话就默认最新的版本了

安装完成之后,看看nginx版本

sudo nginx -v

启动nginx服务

sudo service nginx start

查看nginx是否启动

ps -ef | grep nginx

2、修改配置文件

进入配置目录

cd /etc/nginx

修改前复制原始文件

cp nginx.conf nginx.conf.cp

修改配置文件

sudo vim nginx.conf

一般来说,conf文件里主要有三个模块

...              # 全局块。配置影响nginx全局的指令。

events {         # events块。配置影响nginx服务器或与用户的网络连接。
   ...
}

http      # http块。可以嵌套多个server,配置代理,缓存,日志定义等绝大多数功能和第三方模块的配置。
{
    ...   # http全局块
    server        # server块。配置虚拟主机的相关参数,一个http中可以有多个server。 
    { 
        ...       # server全局块
        location [PATTERN]   # location块。配置请求的路由,以及各种页面的处理情况。
        {
            ...
        }
        location [PATTERN] 
        {
            ...
        }
    }
    server
    {
      ...
    }
    ...     # http全局块
}

如果只是想简单修改一下配置,让网站能够快速搭建起来。下面是一个简单的例子

#运行用户
#user  nobody;
#启动进程,通常设置成和cpu的数量相等
worker_processes  1; 
 
#全局错误日志及PID文件
#error_log  logs/error.log;
#error_log  logs/error.log  notice;
#error_log  logs/error.log  info;
 
#pid        logs/nginx.pid;
 
#工作模式及连接数上限
events {
    #单个后台worker process进程的最大并发链接数    
    worker_connections  1024;
}
 
 
http {
    #设定mime类型,类型由mime.type文件定义
    # mime是可支持的扩展数据类型,图片、音频、视频流等
    include       mime.types;
    default_type  application/octet-stream;
    
    #设定日志格式
    #log_format  main  '$remote_addr - $remote_user [$time_local] "$request" '
    #                  '$status $body_bytes_sent "$http_referer" '
    #                  '"$http_user_agent" "$http_x_forwarded_for"';
    #access_log  logs/access.log  main;
    
    #对于普通应用,必须设为 on,
    #如果用来进行下载等应用磁盘IO重负载应用,可设置为 off,
    #以平衡磁盘与网络I/O处理速度,降低系统的uptime.
    sendfile        on;
    #tcp_nopush     on;
    
    #连接超时时间
    #keepalive_timeout  0;
    keepalive_timeout  65;
    
    #开启gzip压缩
    #gzip  on;
    
    #设定虚拟主机配置,同一个nginx可配置多个server
    server {
        #侦听80端口,server name就是你设置的域名对应的解析后的ip地址
        # 访问的时候通过80端口访问
        listen       80;
        server_name  xx.xx.xx.xx;
        
        #charset koi8-r;
        
        #设定本虚拟主机的访问日志
        #access_log  logs/host.access.log  main;
        
        #默认请求
        # 网站功能文件在服务器的地址
        # 本次当访问域名之后,首先会去/home/wzk/Workspace/love1/目录下
        # index.html或者index.htm文件
        location / {
            #proxy_pass http://127.0.0.1:8091/;
            root   /home/wzk/Workspace/love1/;
            index  index.html index.htm;
	    #proxy_set_header Host $host:$server_port;
        }
 
        #error_page  404              /404.html;
        
        # redirect server error pages to the static page /50x.html
        # 定义错误提示页面
        error_page   500 502 503 504  /50x.html;
        location = /50x.html {
            root   html;
        }
        
        # PHP 脚本请求全部转发到 FastCGI处理. 使用FastCGI默认配置
        # proxy the PHP scripts to Apache listening on 127.0.0.1:80
        #
        #location ~ \.php$ {
        #    proxy_pass   http://127.0.0.1;
        #}
 
        # pass the PHP scripts to FastCGI server listening on 127.0.0.1:9000
        #
        #location ~ \.php$ {
        #    root           html;
        #    fastcgi_pass   127.0.0.1:9000;
        #    fastcgi_index  index.php;
        #    fastcgi_param  SCRIPT_FILENAME  /scripts$fastcgi_script_name;
        #    include        fastcgi_params;
        #}
 
        # deny access to .htaccess files, if Apache's document root
        # concurs with nginx's one
        #
        #location ~ /\.ht {
        #    deny  all;
        #}
    }
 
    # another virtual host using mix of IP-, name-, and port-based configuration
    #
    #server {
    #    listen       8000;
    #    listen       somename:8080;
    #    server_name  somename  alias  another.alias;
 
    #    location / {
    #        root   html;
    #        index  index.html index.htm;
    #    }
    #}
 
 
    # HTTPS server
    #
    #server {
    #    listen       443 ssl;
    #    server_name  localhost;
 
    #    ssl_certificate      cert.pem;
    #    ssl_certificate_key  cert.key;
 
    #    ssl_session_cache    shared:SSL:1m;
    #    ssl_session_timeout  5m;
 
    #    ssl_ciphers  HIGH:!aNULL:!MD5;
    #    ssl_prefer_server_ciphers  on;
 
    #    location / {
    #        root   html;
    #        index  index.html index.htm;
    #    }
    #}
 
}

修改完之后,需要重新载入配置,使其生效

如果想要Nginx实现更复杂的功能,需要对上面的配置做进一步修改。