本文主要是介绍《HCIP-openEuler实验指导手册》2.2 Nginx静态资源访问配置,希望对大家解决编程问题提供一定的参考价值,需要的开发者们随着小编来一起学习吧!
知识点
配置步骤
- 新建静态资源文件
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
这篇关于《HCIP-openEuler实验指导手册》2.2 Nginx静态资源访问配置的文章就介绍到这儿,希望我们推荐的文章对编程师们有所帮助!