- Split userinfo APIs to their own service (`user`) - Added user service to nginx and docker-compose - Cleaned up package.json across the project to remove useless depedencies - Added word list for Guest username generation (source in file itself) - Reworked internal of `user` DB to not have a difference between "raw" id and normal ID (UUID)
4 lines
99 B
Text
4 lines
99 B
Text
#forward the post request to the microservice
|
|
location /api/user/ {
|
|
proxy_pass http://user$uri;
|
|
}
|