fix semicolon missing in nginx conf flie

This commit is contained in:
KeoOp 2023-04-19 10:17:03 +08:00 committed by GitHub
parent 34c27bc4e1
commit 0c3c193d16
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23

View File

@ -39,7 +39,7 @@ Inside the Nginx configuration look the "location" statements, if someone looks
```
location /imgs {
alias /path/images/
alias /path/images/;
}
```
@ -59,7 +59,7 @@ The correct configuration will be:
```
location /imgs/ {
alias /path/images/
alias /path/images/;
}
```