赞
踩
在Linux 中,使用Docker创建Nginx容器,HTML项目结构如下;test.html与img文件夹所属同一级。
sudo chmod 777 test.html
sudo chmod 777 img -R # -R 代表将img文件夹内及所有文件夹或图片授权
在Nginx配置文件中增加一个 server对象,然后重启Nginx即可。
server {
listen 8888; # 监听8888端口
server_name localhost;
location / {
# 在宿主机上,test.html文件所在路径 /data/test
root /data/test;
}
location = /50x.html {
root html;
}
}
Copyright © 2003-2013 www.wpsshop.cn 版权所有,并保留所有权利。