本地搭建Nginx服务器启动web项目
2021-05-02 17:28
标签:切换 log live http 服务 set conf 启动 nginx服务 安装widnow.s版本的nginx,首先下载nginx最新的版本,9.19的版本是( nginx/Windows-1.15.3) nginx/Windows-1.15.3 nginx默认的端口是80端口,修改端口可在conf\nginx.conf 中修改 在nginx目录下的html目录下面,删除改目录下的html文件。添加自己的html文件 本地搭建Nginx服务器启动web项目 标签:切换 log live http 服务 set conf 启动 nginx服务 原文地址:https://www.cnblogs.com/lan-cheng/p/12127571.html本地搭建Nginx服务器启动web项目
前言
下载之后,解压到一个目录下面切换到nginx-1.15.3目录下,然后运行nginx.exe(双击)
也可以使用命令行工具修改端口
#keepalive_timeout 0;
keepalive_timeout 65;
#gzip on;
server {
listen 80//8090;//侦听80端口,可修改为任意没有占用的端口,比如8090
server_name localhost;
#charset koi8-r;
#access_log logs/host.access.log main;
默认主页目录在nginx安装目录的html子目录
location / {
root html;
index index.html index.htm;
}
启动项目
上一篇:Vue.js
下一篇:.netCore 开发框架
文章标题:本地搭建Nginx服务器启动web项目
文章链接:http://soscw.com/index.php/essay/81430.html