Nginx UI is a WebUI tool designed to simplify the management and configuration of Nginx servers. It provides an intuitive interface for system administrators and web developers to monitor server performance, manage configurations, and streamline operations.
Real-time monitoring of server metrics including CPU usage, memory consumption, load average, and disk space.
Automatic backup and version control for configuration changes, enabling easy restoration of previous settings.
Cluster management capabilities, allowing synchronized configuration across multiple Nginx nodes for efficient environment management.
Encrypted export of Nginx and Nginx UI configurations for secure deployment and recovery on new servers.
Integration with ChatGPT for enhanced AI-driven assistance in optimizing configurations.
Support for one-click Let's Encrypt certificate deployment and renewal.
Ideal for system administrators, web developers, and DevOps engineers seeking to manage Nginx configurations efficiently. The tool is cross-platform, supporting Linux, macOS, Windows, and various embedded systems, with internationalization support in multiple languages including English, Simplified Chinese, Traditional Chinese, Japanese, Vietnamese, and more. It can be installed via winget for easy setup on compatible systems.
Online statistics for server indicators such as CPU usage, memory usage, load average, and disk usage.
Automatic configuration backup after changes, with version comparison and restore capabilities
Cluster management supporting mirroring operations to multiple nodes, making multi-server environments easy to manage
Export encrypted Nginx / Nginx UI configurations for quick deployment and recovery to new environments
Enhanced online ChatGPT assistant supporting multiple models, including Deepseek-R1's chain-of-thought display to help you better understand and optimize configurations
MCP (Model Context Protocol) provides special interfaces for AI agents to interact with Nginx UI, enabling automated configuration management and service control.
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
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.
The Nginx UI follows the Debian web server configuration file standard. Created site configuration files will be placed in the sites-available folder that under the Nginx configuration folder (auto-detected). The configuration files for an enabled site will create a soft link to the sites-enabled folder. You may need to adjust the way the configuration files are organised.
For non-Debian (and Ubuntu) systems, you may need to change the contents of the nginx.conf configuration file to the Debian style as shown below.
http {
# ...
include /etc/nginx/conf.d/*.conf;
include /etc/nginx/sites-enabled/*;
}
If you are using the installation script for Linux, the Nginx UI will be installed as nginx-ui service in systemd. Please use the systemctl command to control it.
Start Nginx UI
systemctl start nginx-ui
Stop Nginx UI
systemctl stop nginx-ui
Restart Nginx UI
systemctl restart nginx-ui
With Docker
Our docker image uozi/nginx-ui:latest is based on the latest nginx image and
can be used to replace the Nginx on the host. By publishing the container's port 80 and 443 to the host,
you can easily make the switch.
Note
When using this container for the first time, ensure that the volume mapped to /etc/nginx is empty.
If you want to host static files, you can map directories to container.
The default listening port is 9000, and the default HTTP Challenge port is 9180.
If there is a port conflict, please modify /usr/local/etc/nginx-ui/app.ini manually,
then use systemctl restart nginx-ui to reload the Nginx UI service.
Remove Nginx UI, except configuration and database files
Contributions are what make the open source community such an amazing place to learn, inspire, and create. Any contributions you make are greatly appreciated.
If you have a suggestion that would make this better, please fork the repo and create a pull request. You can also simply open an issue with the tag "enhancement". Don't forget to give the project a star! Thanks again!
Fork the Project
Create your Feature Branch (git checkout -b feature/AmazingFeature)
Commit your Changes (git commit -m 'Add some AmazingFeature')
Push to the Branch (git push origin feature/AmazingFeature)
Open a Pull Request
License
This project is provided under a GNU Affero General Public License v3.0 license that can be found in the LICENSE file. By using, distributing, or contributing to this project, you agree to the terms and conditions of this license.