Remake
Добавил авторизацию в приложение, сделал регистарцию, добавил мидлы
This commit is contained in:
@@ -13,9 +13,26 @@ FROM nginx:stable-alpine
|
||||
|
||||
COPY --from=build /app/dist /usr/share/nginx/html
|
||||
|
||||
|
||||
COPY <<EOF /etc/nginx/conf.d/default.conf
|
||||
server {
|
||||
listen 89;
|
||||
|
||||
location /register {
|
||||
proxy_pass http://backend:8090;
|
||||
proxy_set_header Host \$host;
|
||||
}
|
||||
|
||||
location /login {
|
||||
proxy_pass http://backend:8090;
|
||||
proxy_set_header Host \$host;
|
||||
}
|
||||
|
||||
location /api {
|
||||
proxy_pass http://backend:8090;
|
||||
}
|
||||
|
||||
# Сама статика React
|
||||
location / {
|
||||
root /usr/share/nginx/html;
|
||||
index index.html;
|
||||
|
||||
Reference in New Issue
Block a user