-
Notifications
You must be signed in to change notification settings - Fork 5.1k
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
ci: update docker image configuration for secure deployments (#5259)
* changes required for openshift to work with read-only dirs
- Loading branch information
1 parent
977ba92
commit ba6f518
Showing
5 changed files
with
62 additions
and
10 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,43 @@ | ||
worker_processes auto; | ||
pid /tmp/nginx.pid; | ||
events {} | ||
|
||
http { | ||
include /etc/nginx/mime.types; | ||
default_type text/plain; | ||
|
||
types { | ||
text/html html; | ||
text/css css; | ||
application/javascript js; | ||
} | ||
|
||
server { | ||
gzip on; | ||
gzip_comp_level 2; | ||
gzip_min_length 1000; | ||
gzip_types text/xml text/css; | ||
gzip_http_version 1.1; | ||
gzip_vary on; | ||
gzip_disable "MSIE [4-6] \."; | ||
|
||
listen ${FRONTEND_PORT}; | ||
|
||
location / { | ||
root /usr/share/nginx/html; | ||
index index.html index.htm; | ||
try_files $uri $uri/ /index.html =404; | ||
} | ||
location /api { | ||
proxy_pass ${BACKEND_URL}; | ||
} | ||
location /health_check { | ||
proxy_pass ${BACKEND_URL}; | ||
} | ||
location /health { | ||
proxy_pass ${BACKEND_URL}; | ||
} | ||
|
||
include /etc/nginx/extra-conf.d/*.conf; | ||
} | ||
} |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This is a blocking operation 😕.
Not detected by blockbuster yet but will soon be.