Added login using auth0
This commit is contained in:
@ -7,19 +7,30 @@ server {
|
||||
|
||||
|
||||
location /ngxapi/transaction {
|
||||
proxy_pass http://localhost:8000/transaction;
|
||||
proxy_pass http://docker-django:8000/transaction;
|
||||
}
|
||||
|
||||
location /ngxapi/search {
|
||||
proxy_pass http://localhost:8000/search;
|
||||
proxy_pass http://docker-django:8000/search;
|
||||
}
|
||||
|
||||
location /ngxapi/query_games {
|
||||
proxy_pass http://localhost:8000/query_games;
|
||||
proxy_pass http://docker-django:8000/query_games;
|
||||
}
|
||||
|
||||
location /ngxapi/account {
|
||||
proxy_pass http://localhost:8000/account;
|
||||
proxy_pass http://docker-django:8000/account;
|
||||
}
|
||||
|
||||
location /login {
|
||||
proxy_pass http://docker-django:8000/login;
|
||||
proxy_set_header Host $host;
|
||||
|
||||
}
|
||||
|
||||
location /callback {
|
||||
proxy_pass http://docker-django:8000/callback;
|
||||
proxy_set_header Host $host;
|
||||
}
|
||||
|
||||
|
||||
|
Reference in New Issue
Block a user