Yet another Nginx Web UI, developed by 0xJacky and Hintay.
We welcome translations into any language.
The Nginx UI follows the Nginx standard of creating site configuration files in the sites-available
directory under
the Nginx configuration directory (auto-detected). The configuration files for an enabled site will create a soft link
to the sites-enabled
directory. Therefore, you may need to adjust the way the configuration files are organised.
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>/install
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 commond.
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
On platforms that do not have an official build version, they can be built manually.
Make
Golang 1.17+
node.js 14+
npx browserslist@latest --update-db
Please execute the following command in frontend
directory.
yarn install
make translations
yarn build
Please build the frontend first, and then execute the following command in the project root directory.
go build -o nginx-ui -v main.go
Install and Upgrade
bash <(curl -L -s https://raw.githubusercontent.com/0xJacky/nginx-ui/master/install.sh) @ install
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
bash <(curl -L -s https://raw.githubusercontent.com/0xJacky/nginx-ui/master/install.sh) @ remove
bash <(curl -L -s https://raw.githubusercontent.com/0xJacky/nginx-ui/master/install.sh) @ help
server {
listen 80;
listen [::]:80;
server_name <your_server_name>;
rewrite ^(.*)$ https://$host$1 permanent;
}
server {
listen 443 ssl http2;
listen [::]:443 ssl http2;
server_name <your_server_name>;
ssl_certificate /path/to/ssl_cert;
ssl_certificate_key /path/to/ssl_cert_key;
location / {
proxy_set_header Host $host;
proxy_set_header X-Real-IP $remote_addr;
proxy_set_header X-Forwarded-For $proxy_add_x_forwarded_for;
proxy_set_header X-Forwarded-Proto $scheme;
proxy_http_version 1.1;
proxy_set_header Upgrade $http_upgrade;
proxy_set_header Connection upgrade;
proxy_pass http://127.0.0.1:9000/;
}
}
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!
git checkout -b feature/AmazingFeature
)git commit -m 'Add some AmazingFeature'
)git push origin feature/AmazingFeature
)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.