summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorNathanael Sensfelder <SpamShield0@MultiAgentSystems.org>2018-11-15 22:06:50 +0100
committerNathanael Sensfelder <SpamShield0@MultiAgentSystems.org>2018-11-15 22:06:50 +0100
commit98b01752cb93b622efd57b2b8883f78336d6ee21 (patch)
treeb7687f217aa8ceb56c7b8d953a41bae7c2a8a089
parent5e06809bc6e4eb9f007bf2b0dd2fd53cde600611 (diff)
ID as strings -> larger JSONs -> conf changes
-rw-r--r--conf/nginx.conf3
1 files changed, 2 insertions, 1 deletions
diff --git a/conf/nginx.conf b/conf/nginx.conf
index 8ac97c0..f112ff2 100644
--- a/conf/nginx.conf
+++ b/conf/nginx.conf
@@ -47,7 +47,6 @@ http {
# listen 127.0.0.1;
listen *:80;
server_name localhost;
-
access_log /var/log/nginx/localhost.access_log main;
error_log /var/log/nginx/localhost.error_log info;
@@ -62,6 +61,8 @@ http {
proxy_set_header Host $host;
proxy_set_header X-Real-IP $remote_addr;
proxy_pass http://127.0.0.1:8000;
+
+ client_body_temp_path /tmp/nginx_rbf;
}
}