使用 git 钩子将 vue-cli 项目的 dist 目录推送到 nginx 服务器的子文件夹
Pushing the `dist` directory of a vue-cli project to a subfolder of an nginx server using git hooks
我用 vue-cli 创建了一个 Vue 项目。我的生产代码被构建到本地的 dist
文件夹中。目前,当我提交该代码并推送到它的来源时,有一个 post-receive 挂钩设置用于将该 dist
文件夹的内容部署到服务器的根目录 - http://site_name.com
.我想要做的是让 dist
文件夹转到服务器的子文件夹 http://site_name.com/highlights
。我该怎么做?
您必须定义一个位置块并指定您的 dist 文件夹的路径。在您的情况下,将此代码添加到 sites_enabled/site_name.com.conf
:
location /highlights {
root path/to/your/app/dist;
}
官方 Vue CLI 文档上有一个非常好的页面介绍了常见的部署策略,其中有一个很好的示例 nginx 配置,我个人在我的应用程序中使用了它:(https://cli.vuejs.org/guide/deployment.html#docker-nginx)
user nginx;
worker_processes 1;
error_log /var/log/nginx/error.log warn;
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;
keepalive_timeout 65;
server {
listen 80;
server_name localhost;
location / {
root /app;
index index.html;
try_files $uri $uri/ /index.html;
}
error_page 500 502 503 504 /50x.html;
location = /50x.html {
root /usr/share/nginx/html;
}
}
}
这对我来说效果很好。我只是将我的 dist 文件夹复制到服务器上名为 /app
的目录中。我个人使用 docker 执行此操作,此页面上也有一个很好的示例。
我用 vue-cli 创建了一个 Vue 项目。我的生产代码被构建到本地的 dist
文件夹中。目前,当我提交该代码并推送到它的来源时,有一个 post-receive 挂钩设置用于将该 dist
文件夹的内容部署到服务器的根目录 - http://site_name.com
.我想要做的是让 dist
文件夹转到服务器的子文件夹 http://site_name.com/highlights
。我该怎么做?
您必须定义一个位置块并指定您的 dist 文件夹的路径。在您的情况下,将此代码添加到 sites_enabled/site_name.com.conf
:
location /highlights {
root path/to/your/app/dist;
}
官方 Vue CLI 文档上有一个非常好的页面介绍了常见的部署策略,其中有一个很好的示例 nginx 配置,我个人在我的应用程序中使用了它:(https://cli.vuejs.org/guide/deployment.html#docker-nginx)
user nginx;
worker_processes 1;
error_log /var/log/nginx/error.log warn;
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;
keepalive_timeout 65;
server {
listen 80;
server_name localhost;
location / {
root /app;
index index.html;
try_files $uri $uri/ /index.html;
}
error_page 500 502 503 504 /50x.html;
location = /50x.html {
root /usr/share/nginx/html;
}
}
}
这对我来说效果很好。我只是将我的 dist 文件夹复制到服务器上名为 /app
的目录中。我个人使用 docker 执行此操作,此页面上也有一个很好的示例。