remove secret scanning from prod docker compose

This commit is contained in:
Maidul Islam
2023-07-14 15:21:04 -04:00
parent bd3f9130e4
commit 3d4a616147
2 changed files with 23 additions and 23 deletions

View File

@@ -15,19 +15,19 @@ server {
proxy_cookie_path / "/; HttpOnly; SameSite=strict";
}
location /git-app-api {
proxy_set_header X-Real-RIP $remote_addr;
proxy_set_header X-Forwarded-For $proxy_add_x_forwarded_for;
# location /git-app-api {
# proxy_set_header X-Real-RIP $remote_addr;
# proxy_set_header X-Forwarded-For $proxy_add_x_forwarded_for;
proxy_set_header Host $http_host;
proxy_set_header X-NginX-Proxy true;
# proxy_set_header Host $http_host;
# proxy_set_header X-NginX-Proxy true;
proxy_pass http://git-app:3000/;
proxy_redirect off;
# proxy_redirect http://localhost:8080/ http://frontend.example.com/;
# proxy_pass http://git-app:3000/;
# proxy_redirect off;
# # proxy_redirect http://localhost:8080/ http://frontend.example.com/;
proxy_cookie_path / "/; secure; HttpOnly; SameSite=strict";
}
# proxy_cookie_path / "/; secure; HttpOnly; SameSite=strict";
# }
location / {
include /etc/nginx/mime.types;