Furinai / Blog

基于 SpringBoot 和 Nuxt 的服务端渲染博客系统

Home Page:https://citru.cn

Geek Repo:Geek Repo

Github PK Tool:Github PK Tool

简介

基于 SpringBoot 和 Nuxt 的前后端分离博客

线上地址:citru.cn

项目地址

后端项目:https://github.com/citrucn/Blog

后端码云地址:https://gitee.com/citru/Blog

前端项目:https://github.com/citrucn/Blog-Frontend

前端码云项目:https://gitee.com/citru/Blog-Frontend

SQL文件

blog.sql

初始账号密码:Linter

Nginx配置

location / {
    proxy_pass http://127.0.0.1:3000;
}

location ~ .*\.(gif|jpg|jpeg|png)$
{
    proxy_pass http://127.0.0.1:3000;
}
    
location ~ .*\.(js|css|woff|ttf|ico)?$
{
    proxy_pass http://127.0.0.1:3000;
}

截图

首页

首页

登录

登录

分类

分类

文章

文章

评论

评论

搜索

搜索

后台首页

后台首页

发布文章

发布文章

文章管理

文章管理

新增分类

新增分类

编辑分类

编辑分类

分类管理

分类管理

评论管理

评论管理

新增用户

新增用户

用户管理

用户管理

About

基于 SpringBoot 和 Nuxt 的服务端渲染博客系统

https://citru.cn

License:Apache License 2.0


Languages

Language:Java 100.0%