本文使用 next.js
、nest.js
和 MySQL
从 0 到 1 搭建了一个完整的前后端分离项目。其中,使用 next.js
通过服务端渲染前台页面和后台管理系统,使用 nest.js
提供了 restful api
接口,使用 typeorm
操作 MySQL
数据。
monaco
作为文章、页面的编辑器,支持 Markdown
语法更多功能,欢迎访问系统进行体验。
首先安装 MySQL
,推荐使用 docker 进行安装。
docker run -d --restart=always --name wipi-mysql -p 3306:3306 -e MYSQL_ROOT_PASSWORD=root mysql
git clone --depth=1 https://github.com/fantasticit/wipi.git your-project-name
然后安装项目 node 依赖。
lerna bootstrap
lerna run dev
前台页面地址:http://localhost:3000
。
后台管理地址:http://localhost:3001
。
服务接口地址:http://localhost:4000
。
首次启动,默认创建管理员用户:admin,密码:admin (可在 server/src/config
文件中进行修改)。
[PS] 如服务端配置启动失败,请先确认 MySQL 的配置是否正确,配置文件在 server/src/config
。
在服务器使用 pm2 进行部署即可,可以查看 deploy.sh
文件。具体内容如下:
node -v
npm -v
npm config set registry http://registry.npmjs.org
npm install pm2 -g
npm i -g @nestjs/cli
npm i -g lerna
lerna bootstrap
lerna run build
lerna run pm2
pm2 startup
pm2 save
采用反向代理进行 nginx
配置,同时设置 proxy_set_header X-Real-IP $remote_addr;
以便服务端获取到真实 ip 地址。
upstream wipi_client {
server 127.0.0.1:3000;
keepalive 64;
}
# http -> https 重定向
server {
listen 80;
server_name 域名;
rewrite ^(.*)$ https://$host$1 permanent;
}
server {
listen 443 ssl;
server_name 域名;
ssl_certificate 证书存放路径;
ssl_certificate_key 证书存放路径;
location / {
proxy_http_version 1.1;
proxy_set_header Upgrade $http_upgrade;
proxy_set_header Connection "upgrade";
proxy_set_header Host $host;
proxy_set_header X-Nginx-Proxy true;
proxy_cache_bypass $http_upgrade;
proxy_pass http://wipi_client; #反向代理
proxy_set_header X-Real-IP $remote_addr;
proxy_set_header X-Forwarded-For $proxy_add_x_forwarded_for;
}
}
遇到问题,善用搜索引擎。
这是一个专为移动设备优化的页面(即为了让你能够在 Google 搜索结果里秒开这个页面),如果你希望参与 V2EX 社区的讨论,你可以继续到 V2EX 上打开本讨论主题的完整版本。
V2EX 是创意工作者们的社区,是一个分享自己正在做的有趣事物、交流想法,可以遇见新朋友甚至新机会的地方。
V2EX is a community of developers, designers and creative people.