How to Build Your Own Custom New Bing (Self-Hosted ChatGPT-Style Bing)

Written by wanfeng3387 | Blogger Tech Tutorials


🧠 Introduction

If you’ve ever wanted to run Microsoft’s New Bing on your own server or VPS, this guide is for you. We’ll use an open-source project built with Vue3 and Go that perfectly replicates the Bing Chat interface — and works even in regions where the official site is restricted.

👉 GitHub Project: https://github.com/adams549659584/go-proxy-bingai

The project is stable, lightweight, and simple to deploy. Whether you’re using a container platform like Vercel or a regular VPS, it runs smoothly without redirecting you to cn.bing.com.


🚀 Why Host Your Own New Bing?

  • ✅ Use New Bing without login
  • ✅ Works on any browser (Edge not required)
  • ✅ Optional login unlocks image-generation features
  • ✅ Fully customizable deployment (domain, port, theme, etc.)
  • ✅ Works inside China (with S5 proxy)

⚙️ Method 1 — VPS Deployment

It’s best to use an overseas VPS for this setup.

1️⃣ Install Docker

sudo apt update
sudo apt install docker.io -y

2️⃣ Run the container

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

Now open http://your-ip:8080. If it doesn’t load properly, that’s because HTTPS is required. You’ll need a domain and a reverse proxy such as Caddy or Nginx.

3️⃣ Example Caddy Setup

sudo apt install -y debian-keyring debian-archive-keyring apt-transport-https
curl -1sLf 'https://dl.cloudsmith.io/public/caddy/stable/gpg.key' | sudo gpg --dearmor -o /usr/share/keyrings/caddy-stable-archive-keyring.gpg
curl -1sLf 'https://dl.cloudsmith.io/public/caddy/stable/debian.deb.txt' | sudo tee /etc/apt/sources.list.d/caddy-stable.list
sudo apt update
sudo apt install caddy

Then edit your Caddyfile:

yourdomain.com
encode gzip
reverse_proxy 127.0.0.1:8080

Restart Caddy:

systemctl restart caddy

Now your self-hosted New Bing is live on your domain!


💻 Method 2 — Local Deployment

You can also run it on your own computer (Windows or Linux).

  1. Download the latest release from the GitHub page.
  2. Run the file go-proxy-bingai.
  3. Open your browser at http://localhost:8080.

There’s even a Windows ARM64 version if you’re running on a Mac with Parallels.


🌐 Method 3 — Container Platforms

If you prefer one-click deployment, this project supports:

  • Railway
  • Vercel
  • Render
  • and more…

Be aware that if the default container domain gets blocked in your region, you may need to attach your own custom domain.


📌 Conclusion

Hosting your own version of New Bing is not only fun, it’s also practical — you get full control, no login requirement, and a reliable private chat interface powered by Microsoft’s AI.

If you found this tutorial helpful, don’t forget to share or bookmark it!

👉 GitHub Repository


🖋 Author’s Note

This article was translated and optimized for Blogger readers. Feel free to repost with credit to wanfeng3387 or link back to this page.

© 2025 wanfeng3387 | Tech Tutorials & Blogger Guides

]]> LIVE

Comments

Popular posts from this blog

Why Choose VPS for WordPress Hosting?