提交0.1.0版本

- 完成了书签的基本功能和插件
This commit is contained in:
2026-01-21 23:09:33 +08:00
parent 3e2d1456eb
commit 1a3bbac9ff
95 changed files with 12431 additions and 12445 deletions

View File

@@ -0,0 +1,13 @@
server {
listen 80;
server_name mark.cloud-xl.top;
location / {
proxy_pass http://host.docker.internal:3001;
proxy_http_version 1.1;
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;
}
}

View File

@@ -1,14 +1,14 @@
server {
listen 6666;
server_name mark.cloud-xl.top;
root /opt/browser-bookmark/web;
index index.html;
location / {
try_files $uri $uri/ /index.html;
}
access_log /var/log/nginx/mark.cloud-xl.top.access.log;
error_log /var/log/nginx/mark.cloud-xl.top.error.log;
}
server {
listen 80;
server_name mark.cloud-xl.top;
root /usr/share/nginx/html;
index index.html;
location / {
try_files $uri $uri/ /index.html;
}
access_log /var/log/nginx/mark.cloud-xl.top.access.log;
error_log /var/log/nginx/mark.cloud-xl.top.error.log;
}