Skip to content

Commit 2b94947

Browse files
authored
Corrected spelling mistake in nginx.mdx
Corrected a spelling mistake from nnginx to nginx in the line: echo -e '#!/bin/bash\nnginx -t && systemctl reload nginx' | sudo tee /etc/letsencrypt/renewal-hooks/post/nginx-reload.sh && sudo chmod a+x /etc/letsencrypt/renewal-hooks/post/nginx-reload.sh
1 parent eb37264 commit 2b94947

File tree

1 file changed

+2
-2
lines changed

1 file changed

+2
-2
lines changed

pages/reverse-proxies/nginx.mdx

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -214,12 +214,12 @@ sudo nginx -t
214214
```
215215
### Automatic reload Nginx when SSL Certificates are renewed:
216216
```bash
217-
echo -e '#!/bin/bash\nnginx -t && systemctl reload nginx' | sudo tee /etc/letsencrypt/renewal-hooks/post/nginx-reload.sh && sudo chmod a+x /etc/letsencrypt/renewal-hooks/post/nginx-reload.sh
217+
echo -e '#!/bin/bash\nginx -t && systemctl reload nginx' | sudo tee /etc/letsencrypt/renewal-hooks/post/nginx-reload.sh && sudo chmod a+x /etc/letsencrypt/renewal-hooks/post/nginx-reload.sh
218218
```
219219
### Reload Nginx
220220
```bash
221221
sudo systemctl reload nginx
222222
```
223223
### Vuola!
224224
Your Nginx reverse proxy is now running, securely serving your Postiz instance at your subdomain.domain.tld. 🎉
225-
</Steps>
225+
</Steps>

0 commit comments

Comments
 (0)