知识点
配置步骤
- 新建静态资源文件
mkdir /data
mkdir /data/nginx
touch /data/nginx/index.html
echo "this is /data/nginx/index.html" > /data/nginx/index.html
touch /data/nginx/test.txt
echo "this is /data/nginx/test.txt" > /data/nginx/test.txt
cp /usr/share/nginx/html/nginx-logo.png /data/nginx
cd /data/nginx
ll
- 配置nginx
touch /etc/nginx/conf.d/static.conf
vim /etc/nginx/conf.d/static.conf
文件配置内容如下:
server{
listen 81;
server_name test.com;
root /data/nginx;
index index.html;
}
- 开启nginx服务并访问静态资源
nginx -t
nginx -s reload
systemctl start nginx
- 通过域名访问(修改本地host)
这次用同一个网络的win11系统来测试
在Win11系统中,hosts文件的位置是:C:\Windows\System32\drivers\etc\hosts
hosts文件是一个没有扩展名的系统文件,用于映射IP地址和域名。它的主要作用是能加快域名解析,还可以屏蔽网站等。
192.168.120.137 test.com