首先安装 Nginx, 如何安装
上述方法介绍了如何快速安装配置 Nginx, 但想要配置多项目的话该怎么做呢?
- 进入目录
/etc/nginx/conf.d
- 执行
vim file1.conf
, 新建并编辑.conf
文件, 输入并修改下列代码 [查看Vim 编辑器使用方法]
server {
listen 80; # 端口号
server_name 121.43.124.99; # 地址
error_log /log/nginx/test.error.log;
access_log /log/nginx/test.access.log;
root /code/dist1; # 静态资源路径
index index.html index.htm;
location / {
try_files $uri $uri/ /index.html;
}
}
- 执行
cp file1.conf file2.conf
, 复制文件file1.conf
的内容 - 执行
vim file2.conf
修改file2.conf
server {
listen 81; # 端口号
server_name 121.43.124.99; # 地址
error_log /log/nginx/test.error.log;
access_log /log/nginx/test.access.log;
root /code/dist2; # 静态资源路径
index index.html index.htm;
location / {
try_files $uri $uri/ /index.html;
}
}
打开浏览器, 输入ip 测试
- 121.43.124.99
- 121.43.124.99:81
注: 如果不能正常打开, 检查是否添加端口权限
-
打开云服务器管理控制平台, 添加端口
网友评论