Detailed explanation of putting common nginx commands into shell scripts

Detailed explanation of putting common nginx commands into shell scripts

1. Create a folder to store nginx shell scripts

 /usr/local/task/nginx

1) Restart nginx shell script
vim reload.sh

#!/bin/bash
nginx -s reload

2) Set the shell script for the nginx user to read, write and execute permissions for all files in the html directory
vim setfacl.sh

#!/bin/bash
setfacl -mu:nginx:rwx -R /usr/local/nginx/html/
setfacl -md:u:nginx:rwx -R /usr/local/nginx/html/

3) Shell script to start the nginx process
vim start.sh

#!/bin/bash
nginx

4) Shell script to stop nginx process
vim stop.sh

#!/bin/bash
nginx -s stop

2. Use

1) Add execution permissions to the nginx shell script

chmod -R 755 /usr/local/task/nginx

2) Execute the start.sh script

/usr/local/task/nginx/start.sh 

This is the end of this article about the detailed explanation of putting commonly used nginx commands into shell scripts. For more relevant content about putting nginx commands into shell scripts, please search for previous articles on 123WORDPRESS.COM or continue to browse the following related articles. I hope everyone will support 123WORDPRESS.COM in the future!

You may also be interested in:
  • Detailed process of installing nginx with shell script source code
  • Shell script nginx automation script
  • How to install nginx under Linux
  • Example of implementing nginx self-starting script under centos/rhel
  • Shell script to install Nginx service and customize Nginx version in one click

<<:  MySQL implements string concatenation, interception, replacement, and position search operations

>>:  Vue implements the digital thousands separator format globally

Recommend

Summary of 3 ways to lazy load vue-router

Not using lazy loading import Vue from 'vue&#...

Summary of various methods of MySQL data recovery

Table of contents 1. Introduction 2. Direct recov...

MySQL complete collapse: detailed explanation of query filter conditions

Overview In actual business scenario applications...

Docker installs Elasticsearch7.6 cluster and sets password

Starting from Elasticsearch 6.8, free users are a...

Detailed explanation of mysql exists and not exists examples

Detailed explanation of mysql exists and not exis...

Vue implements 3 ways to switch tabs and switch to maintain data status

3 ways to implement tab switching in Vue 1. v-sho...

HTML (css style specification) must read

CSS style specifications 1. Class Selector 2. Tag...

mysql installer community 8.0.12.0 installation graphic tutorial

This tutorial shares the installation of mysql in...

Vue's detailed code for implementing the shuttle box function

Vue - implement the shuttle box function, the eff...

HTML scroll bar textarea attribute setting

1. Overflow content overflow settings (set whether...

How to encapsulate query components based on element-ui step by step

Table of contents Function Basic query functions ...

jQuery implements form validation function

jQuery form validation example / including userna...

Html+CSS drawing triangle icon

Let’s take a look at the renderings first: XML/HT...