Skip to content

Commit 8b05a1d

Browse files
committed
更新
1 parent c3e5524 commit 8b05a1d

14 files changed

+123
-523
lines changed

altair.json

-8
This file was deleted.

dynamic.yml

-17
This file was deleted.

intellij/idea.properties

-2
Original file line numberDiff line numberDiff line change
@@ -1,8 +1,6 @@
11
# custom IntelliJ IDEA properties
22

3-
# ???????????
43
idea.case.sensitive.fs=false
5-
# ?????????
64
idea.cycle.buffer.size=disabled
75
idea.fatal.error.notification=enabled
86

intellij/idea.vmoptions

+10-8
Original file line numberDiff line numberDiff line change
@@ -33,17 +33,17 @@
3333
# -XX:+SafepointTimeout
3434
# -XX:SafepointTimeoutDelay=1000
3535

36-
-XX:+EnableJVMCI
37-
-XX:+UseJVMCICompiler
38-
-XX:+EagerJVMCI
39-
-XX:JVMCIThreads=4
36+
#-XX:+EnableJVMCI
37+
#-XX:+UseJVMCICompiler
38+
#-XX:+EagerJVMCI
39+
#-XX:JVMCIThreads=4
4040
# -Dgraal.ShowConfiguration=info
4141

4242
# -XX:AutoBoxCacheMax=512
4343

44-
-XX:+UseShenandoahGC
44+
#-XX:+UseShenandoahGC
4545
-XX:ConcGCThreads=4
46-
#-XX:+UseZGC
46+
-XX:+UseZGC
4747
#-XX:ParalleGCThreads=4
4848
-XX:+AlwaysPreTouch
4949
# -XX:+DisableExplicitGC
@@ -65,11 +65,13 @@
6565
# -XX:G1ReservePercent=10
6666

6767
-Dos.detected.name=osx
68-
-Dos.detected.arch=x86_64
69-
-Dos.detected.classifier=osx-x86_64
68+
-Dos.detected.arch=arm64
69+
-Dos.detected.classifier=osx-arm64
7070
-Djava.net.preferIPv4Stack=true
7171
-Deditable.java.test.console=true
7272
-Daction.aware.typeAhead=false
7373
-Dsun.java2d.metal=true
7474

7575
--illegal-access=warn
76+
77+
-Didea.kotlin.plugin.use.k2=true

nginx/nginx.conf

+7-1
Original file line numberDiff line numberDiff line change
@@ -8,7 +8,7 @@
88
# https://nginx.org/en/docs/configure.html
99
#
1010
# ngx_cache_purge 模块下载地址: http://labs.frickle.com/nginx_ngx_cache_purge/
11-
# ./configure --prefix=${NGINX_HOME} \
11+
# ./auto/configure --prefix=${NGINX_HOME} \
1212
# --sbin-path=${NGINX_HOME}/nginx \
1313
# --conf-path=${NGINX_HOME}/nginx.conf \
1414
# --pid-path=${NGINX_HOME}/nginx.pid \
@@ -45,6 +45,11 @@
4545
# --with-stream_realip_module \
4646
# --with-stream_ssl_module \
4747
# --with-stream_ssl_preread_module \
48+
# --http-client-body-temp-path=${NGINX_HOME}/client_temp \
49+
# --http-proxy-temp-path=${NGINX_HOME}/proxy_temp \
50+
# --http-fastcgi-temp-path=${NGINX_HOME}/fastcgi_temp \
51+
# --http-uwsgi-temp-path=${NGINX_HOME}/uwsgi_temp \
52+
# --http-scgi-temp-path=${NGINX_HOME}/scgi_temp \
4853
# --with-pcre=../pcre2-10.44 \
4954
# --with-zlib=../zlib-1.3.1 \
5055
# --with-openssl=../libressl-3.9.2 && \
@@ -149,6 +154,7 @@ http {
149154
#include vhosts/zs.conf;
150155
include vhosts/dev_470.conf;
151156
include vhosts/test.conf;
157+
include vhosts/sstest.conf;
152158
include vhosts/meta.conf;
153159
include vhosts/yakir.conf;
154160
include vhosts/poc.conf;

nginx/vhosts/one.conf

+1-1
Original file line numberDiff line numberDiff line change
@@ -38,7 +38,7 @@ server {
3838
#}
3939

4040
location /pamirs {
41-
# proxy_pass http://127.0.0.1:8190;
41+
#proxy_pass http://127.0.0.1:8190;
4242
#proxy_pass http://127.0.0.1:8880;
4343
#proxy_pass http://127.0.0.1:8881;
4444
proxy_pass http://127.0.0.1:8882;

nginx/vhosts/sstest.conf

+41
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,41 @@
1+
upstream geminiDevbe2 {
2+
server 127.0.0.1:8881;
3+
}
4+
5+
upstream geminiDevbe2OpenApi {
6+
server 127.0.0.1:8091;
7+
}
8+
9+
server {
10+
listen 86;
11+
server_name 127.0.0.1;
12+
13+
location / {
14+
root /Volumes/sm/work/sstest/;
15+
try_files $uri $uri/ /index.html;
16+
index index.html;
17+
}
18+
19+
location /minio/ {
20+
rewrite ^/minio(/.*)$ $1 break; # 去除/minio前缀
21+
proxy_pass http://39.103.145.77:9000;
22+
}
23+
24+
location /pamirs {
25+
proxy_pass http://geminiDevbe2;
26+
proxy_set_header X-Real-IP $remote_addr;
27+
proxy_set_header X-Forwarded-For $proxy_add_x_forwarded_for;
28+
}
29+
30+
location /openapi {
31+
proxy_pass http://geminiDevbe2OpenApi;
32+
proxy_set_header X-Real-IP $remote_addr;
33+
proxy_set_header X-Forwarded-For $proxy_add_x_forwarded_for;
34+
}
35+
36+
location /aiDesigner {
37+
proxy_pass http://geminiDevbe2;
38+
proxy_set_header X-Real-IP $remote_addr;
39+
proxy_set_header X-Forwarded-For $proxy_add_x_forwarded_for;
40+
}
41+
}
+2-2
Original file line numberDiff line numberDiff line change
@@ -1,3 +1,3 @@
11
version https://git-lfs.github.com/spec/v1
2-
oid sha256:0ef946bd4aef6c73fd10735642b60575a562b19c04298f274a03989b4623169e
3-
size 890801
2+
oid sha256:6d6050b94ff293619aaecb172587b8156d22ad15f0bfcc7d91a13dbddec40073
3+
size 890843

rime/rime_custom/user.yaml

+1-1
Original file line numberDiff line numberDiff line change
@@ -1,2 +1,2 @@
11
var:
2-
last_build_time: 1724150767
2+
last_build_time: 1730884660

0 commit comments

Comments
 (0)