Nohup With Busybox httpd Nohup is a command that allows you to run another command in the background, even after you log out of the terminal. It is often used to run long-running processes without being interrupted by a terminal session ending.
Example Usage nohup busybox httpd -f -p 8080 & This command starts a simple HTTP server using BusyBox’s httpd command, serving files from the current directory on port 8080....
To get started with NGINX Open Source or NGINX Plus, you first need to install it on a system and learn some basics.
Installing on Debian/Ubuntu Create a file named /etc/apt/sources.list.d/nginx.list that contains the following contents:
sudo nano /etc/apt/sources.list.d/nginx.list content of nginx.list
deb http://nginx.org/packages/mainline/OS/ CODENAME nginx deb-src http://nginx.org/packages/mainline/OS/ CODENAME nginx check you system OS and CODENAME
lsb_release -a the file nginx.list should be look like below
# comment deb http://nginx.org/packages/mainline/ubuntu/ focal nginx deb-src http://nginx....