1
0
Fork 0
mirror of https://github.com/librenms/docker.git synced 2026-01-23 02:14:48 +00:00

Move Nginx temp folders to /tmp (#55)

This commit is contained in:
CrazyMax 2020-01-23 21:00:50 +01:00
parent b3c296eb21
commit a0c4a93c53
No known key found for this signature in database
GPG key ID: 3248E46B6BB8C7F7
5 changed files with 14 additions and 3 deletions

View file

@ -24,6 +24,7 @@ about: Create a report to help us improve
* Docker version (type `docker --version`) :
* Docker compose version if applicable (type `docker-compose --version`) :
* Platform (Debian 9, Ubuntu 18.04, ...) :
* System info (type `uname -a`) :
* Include all necessary configuration files : `docker-compose.yml`, `.env`, ...
### Docker info

View file

@ -1,5 +1,9 @@
# Changelog
## 1.58.1-RC6 (2020/01/23)
* Move Nginx temp folders to `/tmp` (#55)
## 1.58.1-RC5 (2019/12/20)
* Add snmp-scan option for cron container (#53)

View file

@ -1,6 +1,6 @@
MIT License
Copyright (c) 2018-2019 CrazyMax
Copyright (c) 2018-2020 CrazyMax
Permission is hereby granted, free of charge, to any person obtaining a copy
of this software and associated documentation files (the "Software"), to deal

View file

@ -10,5 +10,4 @@ chown -R librenms. \
/var/log/nginx \
/var/log/php7 \
/var/run/nginx \
/var/run/php-fpm \
/var/tmp/nginx
/var/run/php-fpm

View file

@ -17,6 +17,13 @@ http {
sendfile on;
large_client_header_buffers 4 16k;
## Temp folders
client_body_temp_path /tmp/nginx 1 2;
proxy_temp_path /tmp/nginx-proxy;
fastcgi_temp_path /tmp/nginx-fastcgi;
uwsgi_temp_path /tmp/nginx-uwsgi;
scgi_temp_path /tmp/nginx-scgi;
## Timeouts
client_body_timeout 60;
client_header_timeout 60;