# BlogForum-webapp **Repository Path**: fzzffz/webapp ## Basic Information - **Project Name**: BlogForum-webapp - **Description**: 个人网站的前端代码 - **Primary Language**: Unknown - **License**: Not specified - **Default Branch**: master - **Homepage**: None - **GVP Project**: No ## Statistics - **Stars**: 0 - **Forks**: 0 - **Created**: 2023-10-29 - **Last Updated**: 2023-10-29 ## Categories & Tags **Categories**: Uncategorized **Tags**: None ## README # 个人网站前端搭建: #### 确认准备好了Node.js环境 ``` cd webapp/front npm install //安装vue的代码环境 npm run dev //开发环境运行 ``` 运行效果展示: 首页: ![输入图片说明](front/static/image0.png) 登录界面: ![输入图片说明](front/static/image2.png) 注册界面: ![输入图片说明](front/static/image.png) 论坛内容: ![输入图片说明](front/static/image5.png) 帖子内容: ![输入图片说明](front/static/image6.png) 需要搭建本地nginx服务,本且配置文件nginx.conf的内容如下: ``` server { listen 80; server_name localhost; #charset koi8-r; #access_log logs/host.access.log main; location / { root html; index index.html index.htm; } location /Register { root html; index index.html index.htm; proxy_pass http://localhost:8001; } location /Login { root html; index index.html index.htm; proxy_pass http://localhost:8002; } location /ForumWrite { root html; index index.html index.htm; proxy_pass http://localhost:8003; } location /ForumRead { root html; index index.html index.htm; proxy_pass http://localhost:8004; } location /File { root html; index index.html index.htm; proxy_pass http://localhost:8005; } ```