In a container built based on nginx:alpine, after editing the configuration of nginx, reload
1. In a container built based on nginx:alpine, a URL response 404 needs to edit the configuration of nginx to make it respond to 200. as shown in Figure 1
2. After editing the configuration of nginx, you need to reload. Execute the following commands. as shown in Figure 2
cd /usr/local/openresty/bin
./openresty -s reload
3. After reloading, the URL response is 200, which is in line with expectations. as shown in Figure 3


