通过Nginx部署静态网站


通过 Nginx 部署 HTTP 静态服务

ngnix

软件环境

CentOS 7.8

一、安装Nginx

  1. 在 CentOS 上,可直接用 yum 来安装 Nginx: yum install -y nginx
  2. 安装完成后,使用 nginx 命令启动 Nginx: nginx
  3. 设置 Nginx 开机启动: systemctl enable nginx.service

二、配置静态服务器访问路径

外网IP访问服务器的 Web 服务由 Nginx 提供,Nginx 需要配置静态资源路径信息才能通过 url 正确访问到服务器上的静态资源。

打开 Nginx 的默认配置文件 /etc/nginx/nginx.conf ,修改 Nginx 配置,将默认的 root /usr/share/nginx/html; 修改为: root /data/static;,如下:

# For more information on configuration, see:
#   * Official English Documentation: http://nginx.org/en/docs/
#   * Official Russian Documentation: http://nginx.org/ru/docs/

user nginx;
worker_processes auto;
error_log /var/log/nginx/error.log;
pid /run/nginx.pid;

# Load dynamic modules. See /usr/share/doc/nginx/README.dynamic.
include /usr/share/nginx/modules/*.conf;

events {
    worker_connections 1024;
}

http {
    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  /var/log/nginx/access.log  main;

    sendfile            on;
    tcp_nopush          on;
    tcp_nodelay         on;
    keepalive_timeout   65;
    types_hash_max_size 2048;

    include             /etc/nginx/mime.types;
    default_type        application/octet-stream;

    # Load modular configuration files from the /etc/nginx/conf.d directory.
    # See http://nginx.org/en/docs/ngx_core_module.html#include
    # for more information.
    include /etc/nginx/conf.d/*.conf;

    server {
        listen       80 default_server;
        listen       [::]:80 default_server;
        server_name  _;
        root         /data/static;

           # Load configuration files for the default server block.
        include /etc/nginx/default.d/*.conf;

        location / {
        }

        error_page 404 /404.html;
            location = /40x.html {
        }

        error_page 500 502 503 504 /50x.html;
            location = /50x.html {
        }
    }  
}

注:若要把静态文件放在root文件夹的根目录下,不仅需要把root /usr/share/nginx/html;修改为: root /root;还需要把头部的user nginx;改为user root;

配置文件将 /data/static 作为所有静态资源请求的根路径,如访问: http://你的ip地址/index.html,将会去 /data/static 目录下去查找 index.html

可能需要重启 Nginx 让新的配置生效,如: nginx -s reload 重启后,重启后应该已经可以访问到静态服务器了,可以新建一个静态文件,查看服务是否运行正常。

/data 目录 下创建 static 目录,如: mkdir -p /data/static

创建一个静态文件

/data/static 目录下创建一个静态文件 index.html

<!DOCTYPE html>
<html lang="en">
<head>
    <meta charset="UTF-8">
    <title>静态文件</title>
</head>
<body>
Hello world!
</body>
</html>

访问 http://你的ip地址/index.html 应该可以看到页面输出 Hello world!

至此,一个基于 Nginx 的静态服务器就搭建完成了,现在所有放在 /data/static 目录下的的静态资源都可以直接通过域名(前提是你已经绑定了域名)访问。

敲黑板!!! 用阿里云服务器的同学们要注意了,需要配置以下一些功能才能正常访问域名。

三、阿里服务器配置nginx

问题:公网IP无法访问浏览器

1、进入云服务控制台

2、找到安全组,点击进入

安全组

3、在默认的一个安全组上,有一个配置规则按钮。点击配置规则

配置规则

4、按照如图所示添加

添加

5、浏览器访问ip成功

访问ip


文章作者: 弈心
版权声明: 本博客所有文章除特別声明外,均采用 CC BY 4.0 许可协议。转载请注明来源 弈心 !
评论
  目录