1. Create a folder to store nginx shell scripts/usr/local/task/nginx 1) Restart nginx shell script #!/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 #!/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 #!/bin/bash nginx 4) Shell script to stop nginx process #!/bin/bash nginx -s stop 2. Use1) 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:
|
<<: MySQL implements string concatenation, interception, replacement, and position search operations
>>: Vue implements the digital thousands separator format globally
Not using lazy loading import Vue from 'vue...
Table of contents 1. Introduction 2. Direct recov...
Overview In actual business scenario applications...
Starting from Elasticsearch 6.8, free users are a...
Detailed explanation of mysql exists and not exis...
3 ways to implement tab switching in Vue 1. v-sho...
CSS style specifications 1. Class Selector 2. Tag...
This tutorial shares the installation of mysql in...
Vue - implement the shuttle box function, the eff...
1. Overflow content overflow settings (set whether...
Preface In WEB development, we often involve cros...
As the most commonly used layout element, DIV play...
Table of contents Function Basic query functions ...
jQuery form validation example / including userna...
Let’s take a look at the renderings first: XML/HT...