We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 95ed923 commit 373c03dCopy full SHA for 373c03d
config/nginx.conf
@@ -20,6 +20,14 @@ http {
20
21
keepalive_timeout 65;
22
23
+ # Write temporary files to /tmp so they can be created as a non-privileged user
24
+ client_body_temp_path /tmp/client_temp;
25
+ proxy_temp_path /tmp/proxy_temp_path;
26
+ fastcgi_temp_path /tmp/fastcgi_temp;
27
+ uwsgi_temp_path /tmp/uwsgi_temp;
28
+ scgi_temp_path /tmp/scgi_temp;
29
+
30
+ # Default server definition
31
server {
32
listen [::]:8080 default_server;
33
listen 8080 default_server;
0 commit comments