微软Bing聊天服务搭建
in 技术 with 0 comment 阅读:888次
微软Bing聊天服务搭建
in 技术 with 0 comment 阅读:888次

1、搭建过程概述

首先需要安装代理程序go-proxy-bing,然后需要用域名申请ssl证书,在nginx配置反向代理和配置https,最后可以配置自己的聊天服务器

2、在vps上安装go-proxy-bing程序

docker run -d -p 8080:8080 --name go-proxy-bingai --restart=unless-stopped adams549659584/go-proxy-bingai

其他安装方式微软Bing聊天

3、在vps上安装nginx程序

yum install nginx -y 

4、在Cloudflare免费SSL

免费申请ssl详细教程参考

5、配置nginx

# For more information on configuration, see:
#   * Official English Documentation: http://nginx.org/en/docs/
#   * Official Russian Documentation: http://nginx.org/ru/docs/

user nginx;
worker_processes auto;
error_log /var/log/nginx/error.log;
pid /run/nginx.pid;

# Load dynamic modules. See /usr/share/doc/nginx/README.dynamic.
include /usr/share/nginx/modules/*.conf;

events {
    worker_connections 1024;
}

http {
    log_format  main  '$remote_addr - $remote_user [$time_local] "$request" '
                      '$status $body_bytes_sent "$http_referer" '
                      '"$http_user_agent" "$http_x_forwarded_for"';

    access_log  /var/log/nginx/access.log  main;

    sendfile            on;
    tcp_nopush          on;
    tcp_nodelay         on;
    keepalive_timeout   65;
    types_hash_max_size 4096;

    include             /etc/nginx/mime.types;
    default_type        application/octet-stream;

    # Load modular configuration files from the /etc/nginx/conf.d directory.
    # See http://nginx.org/en/docs/ngx_core_module.html#include
    # for more information.
    include /etc/nginx/conf.d/*.conf;

    server {
        listen       80;
        listen       [::]:80;
        server_name  _;
        root         /usr/share/nginx/html;

        # Load configuration files for the default server block.
        include /etc/nginx/default.d/*.conf;

        error_page 404 /404.html;
        location = /404.html {
        }

        error_page 500 502 503 504 /50x.html;
        location = /50x.html {
        }
    }

# Settings for a TLS enabled server.
#
    server {
        listen       443 ssl http2;
        listen       [::]:443 ssl http2;
        server_name  _;
        root         /usr/share/nginx/html;

        ssl_certificate "/etc/pki/nginx/server.crt";
        ssl_certificate_key "/etc/pki/nginx/private/server.key";
        ssl_session_cache shared:SSL:1m;
        ssl_session_timeout  10m;
        ssl_ciphers HIGH:!aNULL:!MD5;
        ssl_prefer_server_ciphers on;

        # Load configuration files for the default server block.
        include /etc/nginx/default.d/*.conf;
location /sydney/ChatHub {
    proxy_pass http://127.0.0.1:8080;
    proxy_http_version                 1.1;
    proxy_set_header Upgrade           $http_upgrade;
    proxy_set_header Host              $host;
    proxy_set_header X-Forwarded-Proto $scheme;
    proxy_set_header X-Forwarded-Host  $host;
    proxy_set_header X-Forwarded-Port  $server_port;
}

location / {
    proxy_pass http://127.0.0.1:8080;
    proxy_set_header Host              $host;    
    proxy_set_header X-Forwarded-Proto $scheme;
    proxy_set_header X-Forwarded-Host  $host;
    proxy_set_header X-Forwarded-Port  $server_port;
}

        error_page 404 /404.html;
            location = /40x.html {
        }

        error_page 500 502 503 504 /50x.html;
            location = /50x.html {
        }
    }

}

6、Cloudflare 部署work

核心代码 worker.js
具体部署 Cloudflare Workers 教程自行查询,大概如下
注册 Cloudflare 账号
创建 Worker 服务,复制 worker.js 全部代码,粘贴至创建的服务中,保存并部署。
触发器 中自定义访问域名。

7 在线体验

bing聊天在线体验
(1)生成旅游攻略
2023-07-05T02:39:34.png
(2)根据提示词生成图片
2023-07-05T02:20:55.png

问题列表

(1)很抱歉,你已达到可在 24 小时内发送到必应的邮件限制。请稍后回来查看

一键重置、刷新、换用户登录

(2)nginx: [emerg] unknown "connection_upgrade" variable解决与思考

解决方案

Responses
您是第 273487 位访客