diff --git a/serv_nginx/Makefile b/serv_nginx/Makefile index e5e25f4..2d1db6b 100644 --- a/serv_nginx/Makefile +++ b/serv_nginx/Makefile @@ -39,3 +39,14 @@ rebuild_bbvue: cd bbvue && npm run build vue_bb: git npm_clean rebuild_bbvue api_bb_logs + +stop_nginx: + docker compose down nginx + +build_nginx: + docker compose build nginx --no-cache + +start_nginx: + docker compose up nginx -d + +nginx: git stop_nginx build_nginx start_nginx diff --git a/serv_nginx/keycloak/.env b/serv_nginx/keycloak/.env deleted file mode 100644 index 7f4bdf7..0000000 --- a/serv_nginx/keycloak/.env +++ /dev/null @@ -1,22 +0,0 @@ -# Keycloak -KEYCLOAK_VERSION=24.0.4 -KEYCLOAK_USER=admin -KEYCLOAK_PASSWORD=admin123 -KEYCLOAK_DB_USER=keycloak -KEYCLOAK_DB_PASSWORD=keycloak123 -KEYCLOAK_DB_NAME=keycloak - -# Database -POSTGRES_VERSION=15 -POSTGRES_DB=keycloak -POSTGRES_USER=keycloak -POSTGRES_PASSWORD=keycloak123 - -# Domains -KEYCLOAK_FRONTEND_URL=https://auth.yalarba.ru -DOMAIN_YALARBA=yalarba.ru -DOMAIN_BEGUSHIYBASHKIR=begushiybashkir.ru - -# Internal -KEYCLOAK_HTTP_PORT=8080 -KEYCLOAK_INTERNAL_PORT=8080 \ No newline at end of file