Skip to content

Commit

Permalink
fix for frontend container running in non-root context
Browse files Browse the repository at this point in the history
  • Loading branch information
maximiliancsuk committed Mar 12, 2024
1 parent 6298dad commit 77ce964
Showing 1 changed file with 7 additions and 0 deletions.
7 changes: 7 additions & 0 deletions frontend/core/cicd/nginx.conf
Original file line number Diff line number Diff line change
Expand Up @@ -9,6 +9,7 @@ events {
multi_accept on;
}

pid /tmp/nginx.pid;

http {
# what times to include
Expand All @@ -22,6 +23,12 @@ http {
'"$http_referer" "$http_user_agent"';

server {
client_body_temp_path /tmp/client_temp;
proxy_temp_path /tmp/proxy_temp_path;
fastcgi_temp_path /tmp/fastcgi_temp;
uwsgi_temp_path /tmp/uwsgi_temp;
scgi_temp_path /tmp/scgi_temp;

# listen on port 80
listen 80;
# save logs here
Expand Down

0 comments on commit 77ce964

Please sign in to comment.