Category: Open Source

Overview of International CDN Products

CDN stands for Content Delivery Network, which solves the problem by storing your website content on different servers around the world. Visitors can then fetch your site’s files from the CDN location closest to them, instead of accessing your server every time. Cloudflare – free and includes security features…

How to Install BT Panel in a Custom Directory

Baota (BT Panel) locks the installation directory to /www by default, but many servers have limited root partition space. Here is how to move Baota data to another directory.

Check the current server disk usage:
df -h

Here we put the data under /data:
ln -sf /data /www
This will then under /data …

How to Send Emails With Mailgun

MailGun is a great email delivery tool, offering a 3-month trial with 5,000 free emails per month. After three months, it costs $0.80 per 1,000 emails, roughly around 0.5 RMB each, which is quite affordable. 1. Register an account (details omitted), then add a domain. Go to your user dashboard and click “Add New Domain”:
h …

Gitosis to GitLab Migration Script

Add your GitLab account in advance and authorize your SSH key to ensure you can clone directly without a password. After setup, test with the following command, replacing the project with your own.
git clone [email protected]:root/111.gitNote:
url1 is the gitosis address.
Url2 is the GitLab address.
After migration, code, commits …

How to Enable Opcache for PHP 7 Performance Acceleration

For PHP versions 5.5 and above, you can use the built-in opcache to boost performance (it is disabled by default). After PHP 5.5, opcache can be enabled directly with –enable-opcache. For PHP versions below 5.5, you can use APC for caching. Now let’s see how to enable Opcache.

1.Open php …

Best SSH Client Recommendations

Putty in one sentence: Simple, PuTTY is a Telnet, SSH, rlogin, pure TCP, and serial interface connection software.

OpenSSH-for-WindowsOpenSSH is a free and open-source implementation of the SSH (Secure SHell) protocol. The SSH protocol suite can be used for remote control or transferring files between computers …