Deploying the Go-ChatGPT Service Stack with Docker Compose

Service Deployment Structure The go-ChatGPT project relies on multiple middleware services. The deployment directory layout is shown below: |-- chat-api | |-- etc | | `-- config.yaml | `-- logs |-- chat-rpc | |-- etc | | `-- config.yaml | `-- logs |-- docker-compose.yaml |-- mysql | `-- data |-- nginx | |-- conf | | `-- ...

Posted on Mon, 11 May 2026 05:33:29 +0000 by Hilitec

Deploying Decoupled Web Applications on Linux Using Nginx

Environment Setup and Nginx CompilationBegin by installing the necessary compiler and development libraries required for Nginx to function properly, including support for SSL and regular expressions.yum install -y gcc-c++ pcre pcre-devel zlib zlib-devel openssl openssl-devel Extract the source archive and navigate into the directory. Execute th ...

Posted on Sun, 10 May 2026 23:03:15 +0000 by tomhath

Implementing Automatic Browser Cache Busting in Vue Applications

Deployment Caching Challenges When releasing updates to production, users often encounter stale resources due to aggressvie browser caching. Even when code changes, static assets might load from local storage without hitting the server. To resolve this, implement asset fingerprinting during the build process. JavaScript and CSS Fingerprinting B ...

Posted on Fri, 08 May 2026 16:32:32 +0000 by inkfish

Deploying Multiple ZooKeeper Instances on a Single Host

Environment Setup Target system: CentOS 7.3 (sinngle machine) ZooKeeper version: 3.5.2 Installation path: /opt/zk Instance ports: 2181, 2182, 2183 Config files: /opt/zk/conf/node1.cfg through node3.cfg Install rqeuired Java runtime: yum install java-1.8.0-openjdk -y Installation Steps Download the distribution package: wget https://archive.apa ...

Posted on Thu, 07 May 2026 17:00:49 +0000 by HowdeeDoodee

Deploying a BI Application Stack with Docker Compose, Spring Boot, Redis, and RabbitMQ

Server PreparationAcquire a cloud server instance from a provider such as Tencent Cloud or AWS. Select a lightweight server configuration suitable for development or testing purposes. Install CentOS 7.6 or a similar Linux distribution as the operating system.Docker InstallationConfigure the package manager to use a mirror repository for faster ...

Posted on Thu, 07 May 2026 13:36:08 +0000 by Brandito520

Database Systems Overview and MySQL Deployment on Linux

Data represents stored information in various forms such as images, text, spreadsheets, attachments, videos, application packages, user account records, and order details. A Database Management System (DBMS) organizes, stores, and retrieves this data efficiently. The major categories include: RDBMS (Relational) NoSQL (Non-relational) NewSQL (D ...

Posted on Thu, 07 May 2026 06:10:05 +0000 by R_P