Plumemo 是一个轻量、易用、前后端分离的博客系统,为了解除开发人员对后端的束缚,真正做到的一个面向接口开发的博客系统。
plumemo [plumemo],plume(羽) + memo(备忘录)
基于SpringBoot实现零配置让系统的配置更简单,使用了Mybatis-Plus快速开发框架,在不是复杂的查询操作下,无需写sql就可以快速完成接口编写。 后台管理系统使用了vue中流行的ant,另外前后交互使用了JWT作为令牌,进行权限、登录校验。。
由于plumemo 是前后端分离的,那么对于部署来说就一件很头疼的事情,主题、管理系统、后端java服务都需要配置安装配置。除此之外还是jdk、mysql、nginx配置无疑给很多小伙伴照成了一定的阻碍;为此经过几天的努力pluemeo-v1.0.0 安装脚本诞生了。
- jdk
- mysql
- nginx
- 主题
- 管理系统
- 把脚本上传到服务器(不做介绍)
- 添加可执行权限
chmod +x plumemo-v1.0.0.sh
- 执行脚本
sh plumemo-v1.0.0.sh
下面您就可以根据你的选择进行安装:
- 添加可执行权限
chmod +x deploy.sh
- 执行脚本
sh deploy.sh
#user nobody;
worker_processes 1;
#error_log logs/error.log;
#error_log logs/error.log notice;
#error_log logs/error.log info;
#pid logs/nginx.pid;
events {
worker_connections 1024;
}
http {
include 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 logs/access.log main;
sendfile on;
#tcp_nopush on;
#keepalive_timeout 0;
keepalive_timeout 65;
#gzip on;
gzip on;
gzip_min_length 1k;
gzip_buffers 4 16k;
gzip_http_version 1.0;
gzip_comp_level 2;
gzip_types text/plain text/css text/xml text/javascript application/x-javascript application/xml application/rss+xml application/xhtml+xml application/atom_xml;
gzip_vary on;
proxy_set_header Host $host;
proxy_set_header X-Real-IP $remote_addr;
proxy_set_header REMOTE-HOST $remote_addr;
proxy_set_header X-Forwarded-For $proxy_add_x_forwarded_for;
server {
listen 80;
server_name localhost;
location ^~ / {
# 配置主题访问地址
# 这里需要改为您自己的地址
root /usr/local/plumemo/front;
index index.html index.htm;
try_files $uri $uri/ /index.html;
}
location /admin {
# 配置后端管理系统访问地址
# 这里需要改为您自己的地址
root /usr/local/plumemo/;
index index.html index.htm;
try_files $uri $uri/ /admin/index.html;
}
location ^~ /api/blog {
index index.html index.htm index.php;
index proxy_set_header Host $host;
index proxy_set_header X-Real-IP $remote_addr;
index proxy_set_header X-Forwarded-For $proxy_add_x_forwarded_for;
proxy_pass http://localhost:8086/api/hello-blog-service; #后端服务器,具体配置upstream部分即可
}
}
}
至此安装已经完成,开启了您的博客之旅。