折腾不止 Centos 安装NGINX 进行反向代理到ChatGpt服务器 安装 Nginx yum install -y nginx 创建 ChatGpt 配置项 vi /etc/nginx/conf.d/chat.conf server { # 这里端口也可以非 80 或 443 listen 80; # 这里写你的域名 server_name 127.0.0.1; location / { # 代理的 ngi...