Skip to content

Instantly share code, notes, and snippets.

@bnguyensn
Last active September 9, 2019 21:59
Show Gist options
  • Save bnguyensn/58f568f81c4d7fa8e2cf086c49ea8ad3 to your computer and use it in GitHub Desktop.
Save bnguyensn/58f568f81c4d7fa8e2cf086c49ea8ad3 to your computer and use it in GitHub Desktop.
nginx

nginx

Common commands

# Check version
$ nginx -v

# Check configuration syntax
$ sudo nginx -t

# Test run
$ sudo nginx -T

# Start nginx
$ sudo systemctl start nginx

# Stop nginx
$ sudo systemctl stop nginx

# Restart nginx
$ sudo systemctl restart nginx

# Reload configuration
$ sudo systemctl reload nginx

# View status
$ sudo systemctl status nginx

Configuration

Mozilla has kindly provided us with a configuration generator here.

Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment