我的编程空间,编程开发者的网络收藏夹
学习永远不晚

Ubuntu搭建配置Nginx

短信预约 -IT技能 免费直播动态提醒
省份

北京

  • 北京
  • 上海
  • 天津
  • 重庆
  • 河北
  • 山东
  • 辽宁
  • 黑龙江
  • 吉林
  • 甘肃
  • 青海
  • 河南
  • 江苏
  • 湖北
  • 湖南
  • 江西
  • 浙江
  • 广东
  • 云南
  • 福建
  • 海南
  • 山西
  • 四川
  • 陕西
  • 贵州
  • 安徽
  • 广西
  • 内蒙
  • 西藏
  • 新疆
  • 宁夏
  • 兵团
手机号立即预约

请填写图片验证码后获取短信验证码

看不清楚,换张图片

免费获取短信验证码

Ubuntu搭建配置Nginx

目录

一、安装Nginx

方式一:官方网址:http://nginx.org/en/download.html

方式二:使用apt安装

二、启动Nginx

三、nginx配置文件介绍

1、nginx 文件结构

2、默认的配置 

3、nginx的基本配置

四、nginx虚拟主机配置

五、nginx全局变量

六、Nginx主要配置 

1、静态Http服务器配置

2、反向代理服务器配置

3、负载均衡配置

4、虚拟主机配置


一、安装Nginx

方式一:官方网址:http://nginx.org/en/download.html

方式二:使用apt安装

sudo apt install nginx

二、启动Nginx

1、安装后的位置: 

  • /usr/sbin/nginx:主程序
  • /etc/nginx:存放配置文件
  • /usr/share/nginx:存放静态文件
  • /var/log/nginx:存放日志

2、启动并验证效果

service nginx start  # 启动nginxservice nginx reload  # 重新加载nginx配置文件nginx -s reopen            # 重启 Nginxnginx -s stop              # 停止 Nginxnginx -v

在浏览器输入你的ip地址,若出现Wellcome to nginx 就是配置成功。

三、nginx配置文件介绍

1、nginx 文件结构

  • 全局块:配置影响nginx全局的指令。一般有运行nginx服务器的用户组,nginx进程pid存放路径,日志存放路径,配置文件引入,允许生成worker process数等。
  • events块:配置影响nginx服务器或与用户的网络连接。有每个进程的最大连接数,选取哪种事件驱动模型处理连接请求,是否允许同时接受多个网路连接,开启多个网络连接序列化等。
  • http块:可以嵌套多个server,配置代理,缓存,日志定义等绝大多数功能和第三方模块的配置。如文件引入,mime-type定义,日志自定义,是否使用sendfile传输文件,连接超时时间,单连接请求数等。
  • server块:配置虚拟主机的相关参数,一个http中可以有多个server。
  • location块:配置请求的路由,以及各种页面的处理情况。
...              # 全局块。配置影响nginx全局的指令。events {         # events块。配置影响nginx服务器或与用户的网络连接。   ...}http      # http块。可以嵌套多个server,配置代理,缓存,日志定义等绝大多数功能和第三方模块的配置。{    ...   # http全局块    server        # server块。配置虚拟主机的相关参数,一个http中可以有多个server。     {         ...       # server全局块        location [PATTERN]   # location块。配置请求的路由,以及各种页面的处理情况。        {            ...        }        location [PATTERN]         {            ...        }    }    server    {      ...    }    ...     # http全局块}

2、默认的配置 

### You should look at the following URL's in order to grasp a solid understanding# of Nginx configuration files in order to fully unleash the power of Nginx.# https://www.nginx.com/resources/wiki/start/# https://www.nginx.com/resources/wiki/start/topics/tutorials/config_pitfalls/# https://wiki.debian.org/Nginx/DirectoryStructure## In most cases, administrators will remove this file from sites-enabled/ and# leave it as reference inside of sites-available where it will continue to be# updated by the nginx packaging team.## This file will automatically load configuration files provided by other# applications, such as Drupal or Wordpress. These applications will be made# available underneath a path with that package name, such as /drupal8.## Please see /usr/share/doc/nginx-doc/examples/ for more detailed examples.### Default server configuration#server {    listen 80 default_server;    listen [::]:80 default_server;    # SSL configuration    #    # listen 443 ssl default_server;    # listen [::]:443 ssl default_server;    #    # Note: You should disable gzip for SSL traffic.    # See: https://bugs.debian.org/773332    #    # Read up on ssl_ciphers to ensure a secure configuration.    # See: https://bugs.debian.org/765782    #    # Self signed certs generated by the ssl-cert package    # Don't use them in a production server!    #    # include snippets/snakeoil.conf;    root /var/www/html;    # Add index.php to the list if you are using PHP    index index.html index.htm index.nginx-debian.html;    server_name _;    location / {        # First attempt to serve request as file, then        # as directory, then fall back to displaying a 404.        try_files $uri $uri/ =404;    }    # pass PHP scripts to FastCGI server    #    #location ~ \.php$ {    #    include snippets/fastcgi-php.conf;    #    #    # With php-fpm (or other unix sockets):    #    fastcgi_pass unix:/var/run/php/php7.0-fpm.sock;    #    # With php-cgi (or other tcp sockets):    #    fastcgi_pass 127.0.0.1:9000;    #}    # deny access to .htaccess files, if Apache's document root    # concurs with nginx's one    #    #location ~ /\.ht {    #    deny all;    #}}# Virtual Host configuration for example.com## You can move that to a different file under sites-available/ and symlink that# to sites-enabled/ to enable it.##server {#    listen 80;#    listen [::]:80;##    server_name example.com;##    root /var/www/example.com;#    index index.html;##    location / {#        try_files $uri $uri/ =404;#    }#}

3、nginx的基本配置

########### 每个指令必须有分号结束。##################user administrator administrators;  #配置用户或者组,默认为nobody nobody。#worker_processes 2;  #允许生成的进程数,默认为1#pid /nginx/pid/nginx.pid;   #指定nginx进程运行文件存放地址error_log log/error.log debug;  #制定日志路径,级别。这个设置可以放入全局块,http块,server块,级别以此为:debug|info|notice|warn|error|crit|alert|emergevents {    accept_mutex on;   #设置网路连接序列化,防止惊群现象发生,默认为on    multi_accept on;  #设置一个进程是否同时接受多个网络连接,默认为off    #use epoll;      #事件驱动模型,select|poll|kqueue|epoll|resig|/dev/poll|eventport    worker_connections  1024;    #最大连接数,默认为512}http {    include       mime.types;   #文件扩展名与文件类型映射表    default_type  application/octet-stream; #默认文件类型,默认为text/plain    #access_log off; #取消服务日志        log_format myFormat '$remote_addr–$remote_user [$time_local] $request $status $body_bytes_sent $http_referer $http_user_agent $http_x_forwarded_for'; #自定义格式    access_log log/access.log myFormat;  #combined为日志格式的默认值    sendfile on;   #允许sendfile方式传输文件,默认为off,可以在http块,server块,location块。    sendfile_max_chunk 100k;  #每个进程每次调用传输数量不能大于设定的值,默认为0,即不设上限。    keepalive_timeout 65;  #连接超时时间,默认为75s,可以在http,server,location块。    upstream mysvr {         server 127.0.0.1:7878;      server 192.168.10.121:3333 backup;  #热备    }    error_page 404 https://www.baidu.com; #错误页    server {        keepalive_requests 120; #单连接请求上限次数。        listen       80;   #监听端口        server_name  127.0.0.1;   #监听地址               location  ~*^.+$ {       #请求的url过滤,正则匹配,~为区分大小写,~*为不区分大小写。           #root path;  #根目录           #index vv.txt;  #设置默认页           proxy_pass  http://mysvr;  #请求转向mysvr 定义的服务器列表           deny 127.0.0.1;  #拒绝的ip           allow 172.18.5.54; #允许的ip                   }     }}

四、nginx虚拟主机配置

验证配置文件:

root@ubuntu: nginx -tnginx: the configuration file /etc/nginx/nginx.conf syntax is oknginx: configuration file /etc/nginx/nginx.conf test is successful

五、nginx全局变量

  • $remote_addr 与 $http_x_forwarded_for 用以记录客户端的ip地址;
  • $remote_user :用来记录客户端用户名称;
  • $time_local : 用来记录访问时间与时区;
  • $request : 用来记录请求的url与http协议;
  • $status : 用来记录请求状态;成功是200;
  • $body_bytes_s ent :记录发送给客户端文件主体内容大小;
  • $http_referer :用来记录从那个页面链接访问过来的;
  • $http_user_agent :记录客户端浏览器的相关信息;
访问链接是:http://localhost:88/test1/test.php 网站路径是:/var/www/html$host:localhost$server_port:88$request_uri:http://localhost:88/test1/test.php$document_uri:/test1/test.php$document_root:/var/www/html$request_filename:/var/www/html/test1/test.php

六、Nginx主要配置 

1、静态Http服务器配置

        首先,Nginx是一个HTTP服务器,可以将服务器上的静态文件(如HTML、图片)通过HTTP协议展现给客户端。 
配置: 

server {    listen 80;   # 端口    server_name localhost  192.168.1.100;   # 域名       location / {             # 代表这是项目根目录        root /usr/share/nginx/www;   # 虚拟目录    }}

2、反向代理服务器配置

什么是反向代理? 
        客户端本来可以直接通过HTTP协议访问某网站应用服务器,如果网站管理员在中间加上一个Nginx,客户端请求Nginx,Nginx请求应用服务器,然后将结果返回给客户端,此时Nginx就是反向代理服务器。

反向代理配置:

server {    listen 80;    location / {        proxy_pass http://192.168.0.112:8080;   # 应用服务器HTTP地址    }}

         既然服务器可以直接HTTP访问,为什么要在中间加上一个反向代理,不是多此一举吗?反向代理有什么作用?继续往下看,下面的负载均衡、虚拟主机,都基于反向代理实现,当然反向代理的功能也不仅仅是这些。

3、负载均衡配置

        当网站访问量非常大,也摊上事儿了。因为网站越来越慢,一台服务器已经不够用了。于是将相同的应用部署在多台服务器上,将大量用户的请求分配给多台机器处理。同时带来的好处是,其中一台服务器万一挂了,只要还有其他服务器正常运行,就不会影响用户使用。Nginx可以通过反向代理来实现负载均衡。

负载均衡配置:

upstream myapp {    server 192.168.0.111:8080;   # 应用服务器1    server 192.168.0.112:8080;   # 应用服务器2}server {    listen 80;    location / {        proxy_pass http://myweb;    }}

4、虚拟主机配置

        有的网站访问量大,需要负载均衡。然而并不是所有网站都如此出色,有的网站,由于访问量太小,需要节省成本,将多个网站部署在同一台服务器上。 
例如将www.aaa.com和www.bbb.com两个网站部署在同一台服务器上,两个域名解析到同一个IP地址,但是用户通过两个域名却可以打开两个完全不同的网站,互相不影响,就像访问两个服务器一样,所以叫两个虚拟主机。

虚拟主机配置:

server {    listen 80 default_server;    server_name _;    return 444;   # 过滤其他域名的请求,返回444状态码}server {    listen 80;    server_name www.aaa.com;   # www.aaa.com域名    location / {        proxy_pass http://localhost:8080;   # 对应端口号8080    }}server {    listen 80;    server_name www.bbb.com;   # www.bbb.com域名    location / {        proxy_pass http://localhost:8081;   # 对应端口号8081    }}

        在服务器8080和8081分别开了一个应用,客户端通过不同的域名访问,根据server_name可以反向代理到对应的应用服务器。

        虚拟主机的原理是通过HTTP请求头中的Host是否匹配server_name来实现的,有兴趣的同学可以研究一下HTTP协议。

另外,server_name配置还可以过滤有人恶意将某些域名指向你的主机服务器。


        免责声明:本站发布的内容(图片、视频和文字)以原创、转载和分享为主,文章观点不代表个人立场,如果涉及侵权请联系,将立刻删除涉嫌侵权内容。

来源地址:https://blog.csdn.net/weixin_65680938/article/details/129829986

免责声明:

① 本站未注明“稿件来源”的信息均来自网络整理。其文字、图片和音视频稿件的所属权归原作者所有。本站收集整理出于非商业性的教育和科研之目的,并不意味着本站赞同其观点或证实其内容的真实性。仅作为临时的测试数据,供内部测试之用。本站并未授权任何人以任何方式主动获取本站任何信息。

② 本站未注明“稿件来源”的临时测试数据将在测试完成后最终做删除处理。有问题或投稿请发送至: 邮箱/279061341@qq.com QQ/279061341

Ubuntu搭建配置Nginx

下载Word文档到电脑,方便收藏和打印~

下载Word文档

猜你喜欢

Ubuntu下如何搭建与配置Nginx服务

本文小编为大家详细介绍“Ubuntu下如何搭建与配置Nginx服务”,内容详细,步骤清晰,细节处理妥当,希望这篇“Ubuntu下如何搭建与配置Nginx服务”文章能帮助大家解决疑惑,下面跟着小编的思路慢慢深入,一起来学习新知识吧。一、Ngi
2023-06-30

Ubuntu如何配置php、nginx和redis

这篇文章主要介绍“Ubuntu如何配置php、nginx和redis”,在日常操作中,相信很多人在Ubuntu如何配置php、nginx和redis问题上存在疑惑,小编查阅了各式资料,整理出简单好用的操作方法,希望对大家解答”Ubuntu如
2023-07-04
2024-04-02

Ubuntu系统搭建django+nginx+uwsgi的教程详解

1. 在开发机上的准备工作 1.确认项目没有bug。 2.用pip freeze > requirements.txt将当前环境的包导出到requirements.txt文件中,方便在部署的时候安装。 3.将项目上传到服务器上的/srv目录
2022-06-04

Ubuntu如何使用nginx搭建webdav文件服务器

这篇文章将为大家详细讲解有关Ubuntu如何使用nginx搭建webdav文件服务器,小编觉得挺实用的,因此分享给大家做个参考,希望大家阅读完这篇文章后可以有所收获。安装nginx注意必须安装nginx-full, 默认的nginx里面并不
2023-06-15

Ubuntu 搭建etcd

etcd是一个高可用的分布式键值(key-value)数据库。etcd内部采用raft协议作为一致性算法,etcd基于Go语言实现。提供配置共享和服务发现的系统比较多,其中最为大家熟知的是[Zookeeper](后文简称ZK),而ETCD可
2023-01-30

Ubuntu中如何安装和配置Nginx服务器

要在Ubuntu中安装和配置Nginx服务器,可以按照以下步骤进行:安装Nginx服务器:在终端中运行以下命令来安装Nginx服务器:sudo apt updatesudo apt install nginx启动Nginx服务器:安
Ubuntu中如何安装和配置Nginx服务器
2024-04-08

Ubuntu中怎么安装和配置Nginx服务器

要在Ubuntu中安装和配置Nginx服务器,您可以按照以下步骤操作:更新软件包列表:sudo apt update安装Nginx服务器:sudo apt install nginx启动Nginx服务器:sudo systemctl
Ubuntu中怎么安装和配置Nginx服务器
2024-04-09
2023-08-31

Docker配置nginx

1.Docker安装nginx 安装的命令 sudo docker search nginxdocker pull nginx 查看是否安装 docker images 运行测试nginx docker run --name nginx-
2023-08-20

React Native环境配置搭建

React Native环境配置搭建(史上最详细教程和注意事项) 一、安装node二、安装yarn三、安装Java Development Kit四、搭建Android 开发环境 React Native官网环境搭建教程写的
2023-08-16

编程热搜

目录