wfansh 3 months ago
parent
commit
4b1a802f12

BIN
conf/adweb_v3.sql.zip


+ 45 - 49
conf/nginx/adweb3.conf

@@ -1,63 +1,59 @@
 map $http_upgrade $connection_upgrade {
-     default upgrade;
-     'websocket'      upgrade;
-}	
+    default upgrade;
+    'websocket' upgrade;
+}
 
 server {
-	listen 80;
-	listen 443 ssl;
-	server_name v3.adwebcloud.com zhigeng.adwebcloud.com;
-	
-	# 日志地址
-	access_log  /var/log/nginx/access.log;
-	error_log /var/log/nginx/error.log;
+    listen 80;
+    listen 443 ssl;
+    server_name v3.adwebcloud.com zhigeng.adwebcloud.com;
 
-	ssl_certificate /root/.acme.sh/v3.adwebcloud.com_ecc/fullchain.cer;
-	ssl_certificate_key /root/.acme.sh/v3.adwebcloud.com_ecc/v3.adwebcloud.com.key;
+    # 日志地址
+    access_log  /var/log/nginx/access.log;
+    error_log /var/log/nginx/error.log;
 
+    ssl_certificate /root/.acme.sh/v3.adwebcloud.com_ecc/fullchain.cer;
+    ssl_certificate_key /root/.acme.sh/v3.adwebcloud.com_ecc/v3.adwebcloud.com.key;
 
-	include /etc/nginx/conf.d/adweb3/*.conf;
+    include /etc/nginx/conf.d/adweb3/*.conf;
 
-	index index.html;
-	root /home/ubuntu/adweb3-web/dist; # 这里改成前端静态
-	location / {
+    index index.html;
+    root /home/ubuntu/adweb3-web/dist; # 这里改成前端静态
+    location / {
         try_files $uri $uri/ /index.html;
 
         # 后端 API 的转发
-	location /adweb3/ {
-		proxy_set_header Upgrade $http_upgrade;
-                proxy_set_header Connection $connection_upgrade;
-        	proxy_pass http://127.0.0.1:8080;
-    	}
-
-	location /adweb3/websocket/ {
-		proxy_pass           http://127.0.0.1:8080/adweb3/websocket/;
-		proxy_http_version 1.1;
-		proxy_set_header Upgrade $http_upgrade;
-		proxy_set_header Connection "Upgrade";
-		proxy_set_header X-real-ip $remote_addr;
-		proxy_set_header X-Forwarded-For $remote_addr;
-	}
+        location /adweb3/ {
+            proxy_set_header Upgrade $http_upgrade;
+            proxy_set_header Connection $connection_upgrade;
+            proxy_pass http://127.0.0.1:8080;
+        }
+
+	    location /adweb3/websocket/ {
+		    proxy_pass           http://127.0.0.1:8080/adweb3/websocket/;
+		    proxy_http_version 1.1;
+		    proxy_set_header Upgrade $http_upgrade;
+		    proxy_set_header Connection "Upgrade";
+		    proxy_set_header X-real-ip $remote_addr;
+		    proxy_set_header X-Forwarded-For $remote_addr;
+		}
+    }
+}
+
+server {
+    listen 80;
+    server_name xxl-job.v3.adwebcloud.com;
 
+    # 日志地址
+    access_log  /var/log/nginx/access.log;
+    error_log /var/log/nginx/error.log;
 
+    location / {
+        # 后端 API 的转发
+        location / {
+            proxy_set_header Upgrade $http_upgrade;
+            proxy_set_header Connection $connection_upgrade;
+            proxy_pass http://127.0.0.1:8090;
+        }
     }
-	
-}	
-server {
-	listen 80;
-	server_name xxl-job.v3.adwebcloud.com;
-
-	# 日志地址
-	access_log  /var/log/nginx/access.log;
-	error_log /var/log/nginx/error.log;
-
-	location / {
-		# 后端 API 的转发
-		location / {
-			proxy_set_header Upgrade $http_upgrade;
-			proxy_set_header Connection $connection_upgrade;
-			proxy_pass http://127.0.0.1:8090;
-		}
-	}
 }
-

+ 17 - 0
conf/nginx/openai-proxy.conf

@@ -0,0 +1,17 @@
+server {
+    listen 80;
+    server_name openai-proxy.adwebcloud.com;
+
+    location / {
+        proxy_pass https://api.openai.com/;
+        proxy_ssl_server_name on;
+        proxy_set_header Host api.openai.com;
+        proxy_set_header X-Forwarded-For $remote_addr;
+        proxy_set_header X-Forwarded-Proto $scheme;
+        proxy_http_version 1.1;
+
+        chunked_transfer_encoding off;
+        proxy_buffering off;
+        proxy_cache off;
+    }
+}

+ 1 - 1
jeecg-module-system/jeecg-system-start/src/main/resources/application-dev.yml

@@ -300,7 +300,7 @@ jeecg:
     # openAi接口秘钥,填写自己的apiKey;必须。
     apiKey: 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
     # openAi域名,有代理就填代理的域名。默认:openAI官方apiHost
-    apiHost: https://api.openai-proxy.com
+    apiHost: http://openai-proxy.adwebcloud.com
     # 超时时间单位:s。默认 60s
     timeout: 60
 

+ 1 - 1
jeecg-module-system/jeecg-system-start/src/main/resources/application-prod.yml

@@ -302,7 +302,7 @@ jeecg:
     # openAi接口秘钥,填写自己的apiKey;必须。
     apiKey: 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
     # openAi域名,有代理就填代理的域名。默认:openAI官方apiHost
-    apiHost: https://api.openai-proxy.com
+    apiHost: http://openai-proxy.adwebcloud.com
     # 超时时间单位:s。默认 60s
     timeout: 60
 

+ 1 - 1
jeecg-module-system/jeecg-system-start/src/main/resources/application-test.yml

@@ -299,7 +299,7 @@ jeecg:
     # openAi接口秘钥,填写自己的apiKey;必须。
     apiKey: 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
     # openAi域名,有代理就填代理的域名。默认:openAI官方apiHost
-    apiHost: https://api.openai-proxy.com
+    apiHost: http://openai-proxy.adwebcloud.com
     # 超时时间单位:s。默认 60s
     timeout: 60