<img src="https://github.com/0xJacky/nginx-ui/raw/v2.4.1/resources/logo.png" alt="Nginx UI Logo">
Yet another Nginx Web UI, developed by 0xJacky, Hintay and Akino.
Proudly hosted on AtomGit — a part of the G-Star program.
To check out docs, visit nginxui.com.
If you find this project helpful, please consider sponsoring us to support ongoing development and maintenance.
Join the official Nginx UI WeChat community group to discuss usage, deployment ideas, and troubleshooting with other community members.
Scan the QR code below to add us on WeChat, and include Nginx UI Community Group in your request. The administrator will invite you to the official community group.

Your support helps us: - 🚀 Accelerate the development of new features - 🐛 Fix bugs and improve stability - 📚 Enhance documentation and tutorials - 🌐 Provide better community support - 💻 Maintain infrastructure and demo servers
Thanks to JetBrains for supporting us with free open source licenses.
English | Español | 简体中文 | 繁體中文 | Tiếng Việt | 日本語
Table of Contents

URL:https://demo.nginxui.com - Username:admin - Password:admin
We proudly offer official support for:
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/*;
}
For more information: debian/conf/nginx.conf
Nginx UI is available on the following platforms:
You can visit latest release to download the latest distribution, or just use installation scripts for Linux.
In the first runtime of Nginx UI, please visit http://<your_server_ip>:<listen_port>
in your browser to complete the follow-up configurations.
Run Nginx UI in Terminal
nginx-ui -config app.ini
Press Control+C in the terminal to exit Nginx UI.
Run Nginx UI in Background
nohup ./nginx-ui -config app.ini &
Stop Nginx UI with the follow command.
kill -9 $(ps -aux | grep nginx-ui | grep -v grep | awk '{print $2}')
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
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.
conf.d/nginx-ui.conf updates.Deploy with Docker
Then deploy nginx-ui like this:
docker run -dit \
--name=nginx-ui \
--restart=always \
-e TZ=Asia/Shanghai \
-v /mnt/user/appdata/nginx:/etc/nginx \
-v /mnt/user/appdata/nginx-ui:/etc/nginx-ui \
-v /var/run/docker.sock:/var/run/docker.sock \
-p 8080:80 -p 8443:443 \
uozi/nginx-ui:latest
http://<your_server_ip>:8080/install.
If you change the port mapping, access Nginx UI through the host port mapped to container port 80 instead.Deploy with Docker-Compose
Create a docker-compose.yml file like this:
```yml services: nginx-ui: stdin_open: true tty: true container_name: nginx-ui
$ claude mcp add nginx-ui \
-- python -m otcore.mcp_server <graph>