Use MESSAGE_SIZE_LIMIT in webmail container also
The webmail container should use the same value as the front container.master
parent
1e54d44b19
commit
a9f4fc1b3c
@ -0,0 +1,15 @@
|
|||||||
|
#!/usr/bin/python3
|
||||||
|
|
||||||
|
import os
|
||||||
|
import logging as log
|
||||||
|
import sys
|
||||||
|
from socrate import system, conf
|
||||||
|
|
||||||
|
args = os.environ.copy()
|
||||||
|
|
||||||
|
log.basicConfig(stream=sys.stderr, level=args.get("LOG_LEVEL", "WARNING"))
|
||||||
|
|
||||||
|
# Build final configuration paths
|
||||||
|
conf.jinja("/config/nginx-rainloop.conf", args, "/etc/nginx/http.d/rainloop.conf")
|
||||||
|
if os.path.exists("/var/run/nginx.pid"):
|
||||||
|
os.system("nginx -s reload")
|
Loading…
Reference in New Issue