# personal
**Repository Path**: gitlimin/personal
## Basic Information
- **Project Name**: personal
- **Description**: 一个适用于程序员的个人网页(简介、简洁)
- **Primary Language**: HTML
- **License**: Not specified
- **Default Branch**: master
- **Homepage**: http://www.limin.ac.cn
- **GVP Project**: No
## Statistics
- **Stars**: 4
- **Forks**: 1
- **Created**: 2023-08-25
- **Last Updated**: 2025-04-20
## Categories & Tags
**Categories**: Uncategorized
**Tags**: Vue, jQuery, Nginx
## README
## 介绍
个人简介网页
👀 在线预览
#### 🥯 介绍
> 引入swiper、jQuery组件库;
> 使用嵌入式Vue框架实现数据渲染。如果对你有帮助,留个 **star⭐⭐** 再走呗
- ⭐项目面向前端学习Vue基础,学习者
- ⭐有好的建议欢迎交流学习 QQ:778452194/2606252964 邮箱:limin164@163.com
- ⭐项目运行需要配合后端、Nginx
```
Nginx配置:
http {
include mime.types;
default_type application/octet-stream;
#最后发现是NGINX对header有所限制,下划线(_)不支持,通过以下配置解除限制。
underscores_in_headers on;
sendfile on;
keepalive_timeout 90s;
keepalive_requests 2000;
tcp_nodelay on;
tcp_nopush on;
gzip on;
server {
listen 8999;
server_name 127.0.0.1;
root 路径;
location / {
try_files $uri $uri /index.html;
}
location ~^/api {
proxy_pass http://127.0.0.1:7776;
proxy_set_header X-Real-IP $remote_addr;
proxy_set_header X-Forwarded-For $proxy_add_x_forwarded_for;
}
location @router {
rewrite ^.*$ /index.html last;
}
proxy_set_header X-Forwarded-Host $host;
proxy_set_header X-Forwarded-Server $host;
}
}
```