部署一个Web站点:
服务器准备:node0
IP:192.168.10.3
进入/application/nginx/html/下把index.html文件删除:
rm -rf /application/nginx/html/index.html
创建index.html文件,并追加文本:
echo ‘Hello,welcome to Nginx!‘ > /application/nginx/html/index.html #创建并追加
cat /application/nginx/html/index.html #查看index.html文件的内容
Hello,welcome to Nginx!
curl http://192.168.10.3 #访问并测试
Hello,welcome to Nginx!
时间: 2024-11-11 14:49:03