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:
parent
b3c296eb21
commit
a0c4a93c53
5 changed files with 14 additions and 3 deletions
1
.github/ISSUE_TEMPLATE/bug_report.md
vendored
1
.github/ISSUE_TEMPLATE/bug_report.md
vendored
|
|
@ -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
|
||||
|
|
|
|||
|
|
@ -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)
|
||||
|
|
|
|||
2
LICENSE
2
LICENSE
|
|
@ -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
|
||||
|
|
|
|||
|
|
@ -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
|
||||
|
|
|
|||
|
|
@ -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;
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue