docker pull nginx:latest
docker run -d -p 2002:80 --name abcnginx nginx:latest
docker exec -ti abcnginx /bin/bash
然后更新下
apt-get update
apt-get install vim
vim /etc/nginx/nginx.conf
在在http{}中的server中修改相关信息,指定需要显示的页面。
首先在宿主机上,通过
docker cp homepage abcnginx:/home/
把homepage文件加放到/home目录下,注意homepage文件夹下有index.html
然后修改/etc/nginx/conf.d/default.conf中的内容如下:
server {
listen 80;
server_name localhost;
location / {
root /home/homepage; # 指定根目录下的静态文件目录(相对)
index index.html index.htm;
}
error_page 500 502 503 504 /50x.html;
location = /50x.html {
root /usr/share/nginx/html;
}
# 设置反向代理
location /v/ {
proxy_pass http://xxx.com/api/;
}
}
注意读取顺序是这样的,解析http的时候,读取/etc/nginx/nginx.conf里面的http{},里面引用了/etc/nginx/conf.d/default.conf里的server{}来定位具体页面。