引言
在CentOS 7
系统上使用docker
安装nginx
,使用nginx
部署一个由Vue
开发、打包的项目
docker安装nginx
这里不多赘述,直接上docker-compose.yml
代码
nginx:container_name: nginximage: nginx:1.27.2ports:- "80:80"volumes:- /docker/nginx/conf/nginx.conf:/etc/nginx/nginx.conf- /docker/nginx/conf/conf.d:/etc/nginx/conf.d- /docker/nginx/html/dist:/etc/nginx/html- /docker/nginx/logs:/var/log/nginxnetworks:- myNetwork
需要注意的是容器卷里的/docker/nginx/html/dist
,到时候部署前端项目时把dist
文件夹直接放到/nginx/html
文件夹里就行
nginx部署
前端打包的dist
文件夹直接放到/nginx/html
目录里
然后看nginx.conf
的代码
# 此处注意用户不能是别的, 否则会报403错误
user root;
worker_processes auto;error_log /var/log/nginx/error.log notice;
pid /var/run/nginx.pid;events {worker_connections 1024;
}http {include /etc/nginx/mime.types;default_type application/octet-stream;log_format main '$remote_addr - $remote_user [$time_local] "$request" ''$status $body_bytes_sent "$http_referer" ''"$http_user_agent" "$http_x_forwarded_for"';access_log /var/log/nginx/access.log main;sendfile on;#tcp_nopush on;keepalive_timeout 65;server {listen 80;listen [::]:80;server_name localhost;location / {#此处路径对应nginx容器内的/etc/nginx/html,所以需要将容器卷dist挂载到容器内的htmlroot html;index index.html index.htm;}}
}
常见问题
404: 可能是容器内的项目文件夹html
为空, 可能是容器卷挂载错误
403: 禁止访问index.html
,两种情况:1.可能是容器内的项目文件夹html
不存在index.html
,可能是容器卷挂载错误;2.可能是权限问题,需要将nginx.conf开头的用户改为root: user root
500:需要自行排查
查看日志的两种方式
docker logs nginx
cat /nginx/logs/error.log