Update authentication.md

Added a semi-colon that while missing would cause a reverse proxy failure.
This commit is contained in:
Master_of_Pants
2021-05-16 23:47:11 -06:00
committed by GitHub
parent d56c8c283c
commit 17c18c6d08

View File

@@ -116,7 +116,7 @@ server {
# Required to allow user to logout of authentication from within Recipes
# Ensure the <auth_endpoint> below is changed to actual the authentication url
location /accounts/logout/ {
return 301 http://<auth_endpoint>/logout
return 301 http://<auth_endpoint>/logout;
}
}
```