- View Access and Error Events from Nginx in realtime
- Monitor resource usage and active connections
- Start, stop or restart nginx from the GUI
- Real time monitoring of Nginx configuration validity
- View Nginx state (inactive, active)
This application is available as a .AppImage and .deb package. You can choose the package that is most suitable for your system.
-
Download the
.AppImagefile from the GitHub Releases page. -
Make the
.AppImagefile executable:chmod +x rustinx_0.1.0_amd64.AppImage
To run the application, you can use the following command:
sudo ./rustinx_0.1.0_amd64.AppImage
To run the
.AppImagewithout navigating to its directory each time, you can create a symbolic link in a directory that is part of your system'sPATH. Here’s how you can do it:- Move the
.AppImageto a permanent location, if it's not already in one. For example, you might want to place it in/opt:
sudo mv rustinx_0.1.0_amd64.AppImage /opt/ sudo ln -s /opt/rustinx_0.1.0_amd64.AppImage /usr/local/bin/rustinx
Now you can run the application from anywhere using the command:
sudo rustinx
- Move the
-
Download the
.debfile from the GitHub Releases page. -
Open a terminal in the directory where the
.debfile is downloaded. -
Install the package using the following command:
sudo apt-get update sudo apt-get install libgtk-3-dev sudo dpkg -i rustinx_0.1.0_amd64.deb
If there are any missing dependencies, you may need to run:
sudo apt-get install -f
To run the application, you can use the following command:
sudo rustinx
1- install dependencies
#npm
npm install
#yarn
yarn2- Run the App in development mode:
#npm
npm run tauri:dev
#yarn
yarn tauri:devnote that the first run will take time as tauri download and compile dependencies.
run:
#npm
npm run tauri:build
#yarn
yarn tauri:build- Ensure Visual C++ is installed https://learn.microsoft.com/en-us/cpp/windows/latest-supported-vc-redist?view=msvc-170
- Ensure Rust is installed