Skip to content
This repository has been archived by the owner on May 24, 2022. It is now read-only.

Commit

Permalink
Merge pull request #596 from SELab-2/develop
Browse files Browse the repository at this point in the history
Release v3.0.1
  • Loading branch information
stijndcl committed May 22, 2022
2 parents 8a6324f + d68bc58 commit b70c7d6
Show file tree
Hide file tree
Showing 2 changed files with 6 additions and 5 deletions.
9 changes: 5 additions & 4 deletions files/sysadmin_guide.md
Original file line number Diff line number Diff line change
Expand Up @@ -386,12 +386,13 @@ server {
try_files $uri $uri/ =404;
}
location = /api {
return 302 /api/;
}
location /api/ {
rewrite ^/api/(.*)$ /$1 break;
proxy_pass http://backend/;
proxy_http_version 1.1;
proxy_set_header Upgrade $http_upgrade;
proxy_set_header Connection "upgrade";
}
}
```
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -20,7 +20,7 @@ export default function SocialButtons(props: { edition: string; uuid: string })
return (
<SocialsContainer>
<Socials>
<GithubLoginButton text="Register with Github" onClick={githubRegister} />
<GithubLoginButton text="Register with GitHub" onClick={githubRegister} />
</Socials>
</SocialsContainer>
);
Expand Down

0 comments on commit b70c7d6

Please sign in to comment.