feat:初始化工程

This commit is contained in:
2025-09-18 16:11:43 +08:00
commit 2b8bfe1de9
20 changed files with 1704 additions and 0 deletions

21
nginx.conf Normal file
View File

@@ -0,0 +1,21 @@
server {
listen 80 default_server;
listen [::]:80 default_server;
root /usr/share/nginx/html;
index index.html;
server_name _;
location /blog/ {
proxy_pass http://host.docker.internal:82/;
proxy_set_header Host $host;
proxy_set_header X-Real-IP $remote_addr;
proxy_set_header X-Forwarded-For $proxy_add_x_forwarded_for;
proxy_set_header X-Forwarded-Proto $scheme;
}
location / {
try_files $uri $uri/ =404;
}
}