- nginx now use "raw" proxy_pass, where it doesnt supply the $uri since if only the host is provided, nginx will handle lots of usecases - pnpm now uses the lockfile correctly - Docker: use lockfile in all steps - Docker: install the necessary packages if building from source is needed (better-sqlite3 for example)
8 lines
140 B
Text
8 lines
140 B
Text
#forward the post request to the microservice
|
|
location /api/auth/ {
|
|
proxy_pass http://auth;
|
|
}
|
|
|
|
location / {
|
|
root /volumes/static/auth/;
|
|
}
|