mirror of
https://github.com/0xJacky/nginx-ui.git
synced 2026-06-05 11:00:33 +08:00
Added translation using Weblate (Russian) Co-authored-by: Sergey Pinus <bropines@gmail.com> Co-authored-by: Weblate <noreply@weblate.org>
109 lines
4.4 KiB
Markdown
109 lines
4.4 KiB
Markdown
<script setup>
|
|
import { VPTeamMembers } from 'vitepress/theme';
|
|
|
|
const blogIcon = '<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 24 24" xml:space="preserve"><title>Blog</title><path d="M5 23c-2.2 0-4-1.8-4-4v-8h2v4.5c.6-.3 1.3-.5 2-.5 2.2 0 4 1.8 4 4s-1.8 4-4 4zm0-6c-1.1 0-2 .9-2 2s.9 2 2 2 2-.9 2-2-.9-2-2-2zm19 2h-2C22 9.6 14.4 2 5 2V0c10.5 0 19 8.5 19 19zm-5 0h-2c0-6.6-5.4-12-12-12V5c7.7 0 14 6.3 14 14zm-5 0h-2c0-3.9-3.1-7-7-7v-2c5 0 9 4 9 9z"/></svg>';
|
|
|
|
const members = [
|
|
{
|
|
avatar: 'https://www.github.com/0xJacky.png',
|
|
name: '0xJacky',
|
|
title: 'Creator',
|
|
links: [
|
|
{ icon: 'github', link: 'https://github.com/0xJacky' },
|
|
{ icon: { svg: blogIcon }, link: 'https://jackyu.cn' }
|
|
]
|
|
},
|
|
{
|
|
avatar: 'https://www.github.com/Hintay.png',
|
|
name: 'Hintay',
|
|
title: 'Developer',
|
|
links: [
|
|
{ icon: 'github', link: 'https://github.com/Hintay' },
|
|
{ icon: { svg: blogIcon }, link: 'https://blog.kugeek.com' }
|
|
]
|
|
},
|
|
{
|
|
avatar: 'https://www.github.com/akinoccc.png',
|
|
name: 'Akino',
|
|
title: 'Developer',
|
|
links: [
|
|
{ icon: 'github', link: 'https://github.com/akinoccc' },
|
|
{ icon: { svg: blogIcon }, link: 'https://akino.icu' }
|
|
]
|
|
},
|
|
{
|
|
avatar: 'https://avatars.githubusercontent.com/u/126759922?s=200&v=4',
|
|
name: 'Cursor',
|
|
title: 'Developer',
|
|
links: [
|
|
{ icon: 'github', link: "https://github.com/cursor/cursor" },
|
|
{ icon: { svg: blogIcon }, link: 'https://www.cursor.com/blog' }
|
|
]
|
|
}
|
|
]
|
|
</script>
|
|
|
|
# What is Nginx UI?
|
|
|
|

|
|
|
|
<div class="tip custom-block" style="padding-top: 8px">
|
|
|
|
Just want to try it out? Skip to the [Quickstart](./getting-started).
|
|
|
|
</div>
|
|
|
|
Nginx UI is a comprehensive web-based interface designed to simplify the management and configuration of Nginx single-node and cluster nodes.
|
|
It offers real-time server statistics, Nginx performance monitoring, AI-powered ChatGPT assistance,
|
|
the code editor that supports LLM Code Completion,
|
|
one-click deployment, automatic renewal of Let's Encrypt certificates, and user-friendly editing tools for website configurations. Additionally, Nginx UI provides
|
|
features such as online access to Nginx logs, automatic testing and reloading of configuration files, a web terminal,
|
|
dark mode, and responsive web design. Built with Go and Vue, Nginx UI ensures a seamless and efficient experience for
|
|
managing your Nginx server.
|
|
|
|
## Our Team
|
|
|
|
<VPTeamMembers size="small" :members="members" />
|
|
|
|
## Features
|
|
|
|
- Online statistics for server indicators such as CPU usage, memory usage, load average, and disk usage.
|
|
- Configurations are automatically backed up after modifications, allowing you to compare any versions or restore to any previous version.
|
|
- Support for mirroring operations to multiple cluster nodes, easily manage multi-server environments.
|
|
- Export encrypted Nginx / Nginx UI configurations for quick deployment and recovery to new environments.
|
|
- Enhanced Online ChatGPT Assistant with support for multiple models, including displaying Deepseek-R1's chain of thought to help you better understand and optimize configurations.
|
|
- One-click deployment and automatic renewal Let's Encrypt certificates.
|
|
- Online editing websites configurations with our self-designed **NgxConfigEditor** which is a user-friendly block
|
|
editor for nginx configurations, or **Ace Code Editor** which supports **LLM Code Completion** and highlighting nginx configuration syntax.
|
|
- Online view Nginx logs.
|
|
- Written in Go and Vue, distribution is a single executable binary.
|
|
- Automatically test configuration file and reload nginx after saving configuration.
|
|
- Web Terminal.
|
|
- Dark Mode.
|
|
- Responsive Web Design.
|
|
|
|
## Available Platforms
|
|
|
|
Nginx UI is available on the following platforms:
|
|
|
|
- macOS 11 Big Sur and later (amd64 / arm64)
|
|
- Linux 2.6.23 and later (x86 / amd64 / arm64 / armv5 / armv6 / armv7)
|
|
- Including but not limited to Debian 7 / 8, Ubuntu 12.04 / 14.04 and later, CentOS 6 / 7, Arch Linux
|
|
- FreeBSD
|
|
- OpenBSD
|
|
- Dragonfly BSD
|
|
- Openwrt
|
|
|
|
## Internationalization
|
|
|
|
We proudly offer official support for:
|
|
|
|
- English
|
|
- Simplified Chinese
|
|
- Traditional Chinese
|
|
|
|
As non-native English speakers, we strive for accuracy, but we know there's always room for improvement. If you spot any issues, we'd love your feedback!
|
|
|
|
Thanks to our amazing community, additional languages are also available! Explore and contribute to translations on [Weblate](https://weblate.nginxui.com).
|
|
|