nginx
Nginx web server. More information: <https://nginx.org/en/>.
Install
- All systems
-
curl cmd.cat/nginx.sh
- Debian
-
apt-get install nginx-extras
- Ubuntu
-
apt-get install nginx-extras
- Alpine
-
apk add nginx
- Arch Linux
-
pacman -S nginx
- Kali Linux
-
apt-get install nginx-extras
- Fedora
-
dnf install nginx-extras
- Windows (WSL2)
-
sudo apt-get update
sudo apt-get install nginx-extras
- OS X
-
brew install nginx
- Raspbian
-
apt-get install nginx-extras
- Dockerfile
- dockerfile.run/nginx
- Docker
-
docker run cmd.cat/nginx nginx
powered by Commando
Nginx web server. More information: <https://nginx.org/en/>.
-
Start server with the default config file:
nginx
-
Start server with a custom configuration file:
nginx -c configuration_file
-
Start server with a prefix for all relative paths in the configuration file:
nginx -c configuration_file -p prefix/for/relative/paths
-
Test the configuration without affecting the running server:
nginx -t
-
Reload the configuration by sending a signal with no downtime:
nginx -s reload
© tl;dr; authors and contributors