File tree 14 files changed +123
-523
lines changed
14 files changed +123
-523
lines changed Load Diff This file was deleted.
Load Diff This file was deleted.
Original file line number Diff line number Diff line change 1
1
# custom IntelliJ IDEA properties
2
2
3
- # ???????????
4
3
idea.case.sensitive.fs =false
5
- # ?????????
6
4
idea.cycle.buffer.size =disabled
7
5
idea.fatal.error.notification =enabled
8
6
Original file line number Diff line number Diff line change 33
33
# -XX:+SafepointTimeout
34
34
# -XX:SafepointTimeoutDelay=1000
35
35
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
40
40
# -Dgraal.ShowConfiguration=info
41
41
42
42
# -XX:AutoBoxCacheMax=512
43
43
44
- -XX:+UseShenandoahGC
44
+ # -XX:+UseShenandoahGC
45
45
-XX:ConcGCThreads=4
46
- # -XX:+UseZGC
46
+ -XX:+UseZGC
47
47
#-XX:ParalleGCThreads=4
48
48
-XX:+AlwaysPreTouch
49
49
# -XX:+DisableExplicitGC
65
65
# -XX:G1ReservePercent=10
66
66
67
67
-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
70
70
-Djava.net.preferIPv4Stack=true
71
71
-Deditable.java.test.console=true
72
72
-Daction.aware.typeAhead=false
73
73
-Dsun.java2d.metal=true
74
74
75
75
--illegal-access=warn
76
+
77
+ -Didea.kotlin.plugin.use.k2=true
Original file line number Diff line number Diff line change 8
8
# https://nginx.org/en/docs/configure.html
9
9
#
10
10
# ngx_cache_purge 模块下载地址: http://labs.frickle.com/nginx_ngx_cache_purge/
11
- # ./configure --prefix=${NGINX_HOME} \
11
+ # ./auto/ configure --prefix=${NGINX_HOME} \
12
12
# --sbin-path=${NGINX_HOME}/nginx \
13
13
# --conf-path=${NGINX_HOME}/nginx.conf \
14
14
# --pid-path=${NGINX_HOME}/nginx.pid \
45
45
# --with-stream_realip_module \
46
46
# --with-stream_ssl_module \
47
47
# --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 \
48
53
# --with-pcre=../pcre2-10.44 \
49
54
# --with-zlib=../zlib-1.3.1 \
50
55
# --with-openssl=../libressl-3.9.2 && \
@@ -149,6 +154,7 @@ http {
149
154
#include vhosts/zs.conf;
150
155
include vhosts/dev_470.conf;
151
156
include vhosts/test.conf;
157
+ include vhosts/sstest.conf;
152
158
include vhosts/meta.conf;
153
159
include vhosts/yakir.conf;
154
160
include vhosts/poc.conf;
Original file line number Diff line number Diff line change @@ -38,7 +38,7 @@ server {
38
38
#}
39
39
40
40
location /pamirs {
41
- # proxy_pass http://127.0.0.1:8190;
41
+ #proxy_pass http://127.0.0.1:8190;
42
42
#proxy_pass http://127.0.0.1:8880;
43
43
#proxy_pass http://127.0.0.1:8881;
44
44
proxy_pass http://127.0.0.1:8882;
Original file line number Diff line number Diff line change
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
+ }
Original file line number Diff line number Diff line change 1
1
version https://git-lfs.github.com/spec/v1
2
- oid sha256:0ef946bd4aef6c73fd10735642b60575a562b19c04298f274a03989b4623169e
3
- size 890801
2
+ oid sha256:6d6050b94ff293619aaecb172587b8156d22ad15f0bfcc7d91a13dbddec40073
3
+ size 890843
Original file line number Diff line number Diff line change 1
1
var :
2
- last_build_time : 1724150767
2
+ last_build_time : 1730884660
You can’t perform that action at this time.
0 commit comments