栏目分类:
子分类:
返回
名师互学网用户登录
快速导航关闭
当前搜索
当前分类
子分类
实用工具
热门搜索
名师互学网 > IT > 系统运维 > 运维 > Linux

CentOS7 Nginx部署web项目

Linux 更新时间: 发布时间: IT归档 最新发布 模块sitemap 名妆网 法律咨询 聚返吧 英语巴士网 伯小乐 网商动力

CentOS7 Nginx部署web项目

1、下载对应系统版本的nginx包
# wget http://nginx.org/packages/centos/7/noarch/RPMS/nginx-release-centos-7-0.el7.ngx.noarch.rpm

2、建立nginx的yum仓库
# rpm -ivh nginx-release-centos-7-0.el7.ngx.noarch.rpm

3、安装nginx
# yum install nginx

4、启动Nginx并设置开机自动运行
# systemctl start nginx.service
# systemctl enable nginx.service

5、项目打包目录:
build
----static
--------css
--------js
--------...
----index.html

注:其中【index.html】 内引入路径为

6、配置nginx

静态文件放在 /usr/web/demo 

# cd /etc/nginx/
# vi nginx.conf
----------------------------nginx.conf start-------------------------
server {
    listen       80;
    listen       [::]:80;
    server_name  _;
    root         /usr/share/nginx/html;
    # Load configuration files for the default server block.
    include /etc/nginx/default.d/*.conf;
    error_page 404 /404.html;
    location = /404.html {
    }
    error_page 500 502 503 504 /50x.html;
    location = /50x.html {
    }
    # 设置默认 / 路径访问页面
    location / {
        root /usr/web/demo;
        index index.html index.htm;
        autoindex on;
    }
    # 设置 /demo 路径访问页面
    location /demo{
        root /usr/web;
        index index.html index.htm;
        autoindex on;
        add_header Cache-Control no-cache;
    }
    # HTML中静态文件映射路径
    location /static {
        root /usr/web/demo;
        autoindex on;
    }
}
----------------------------nginx.conf end-------------------------

7、重启Nginx
# systemctl restart nginx.service

8、访问服务

浏览器地址栏输入:

http://[IP]         或        http://[IP]/demo

注:其中IP为服务器外网对应的IP地址

转载请注明:文章转载自 www.mshxw.com
本文地址:https://www.mshxw.com/it/277042.html
我们一直用心在做
关于我们 文章归档 网站地图 联系我们

版权所有 (c)2021-2022 MSHXW.COM

ICP备案号:晋ICP备2021003244-6号