This commit is contained in:
2022-10-22 11:01:52 +08:00
commit 200117b921
105 changed files with 26944 additions and 0 deletions

17
osdict_front/osdict.conf Normal file
View File

@ -0,0 +1,17 @@
server {
listen 80;
#你的域名
server_name 127.0.0.1;
location /api/ {
rewrite /api/(.+)$ /$1 break;
proxy_pass http://192.168.88.100:8000;
}
location / {
root /var/local/web/osdict-front/dist;
index index.html index.htm;
try_files $uri $uri/ /index.html;
}
}