mirror of
https://github.com/overleaf/overleaf.git
synced 2024-12-25 05:04:34 +00:00
allow header and footer to be configured via env vars
This commit is contained in:
parent
6189ce9c16
commit
e8fe3bc924
1 changed files with 8 additions and 0 deletions
|
@ -136,6 +136,14 @@ settings =
|
||||||
# address and http/https protocol information.
|
# address and http/https protocol information.
|
||||||
behindProxy: process.env["SHARELATEX_BEHIND_PROXY"] or false
|
behindProxy: process.env["SHARELATEX_BEHIND_PROXY"] or false
|
||||||
|
|
||||||
|
if process.env["SHARELATEX_LEFT_FOOTER"]
|
||||||
|
left_footer: process.env["SHARELATEX_LEFT_FOOTER"]
|
||||||
|
|
||||||
|
if process.env["SHARELATEX_RIGHT_FOOTER"]
|
||||||
|
right_footer: process.env["SHARELATEX_RIGHT_FOOTER"]
|
||||||
|
|
||||||
|
if process.env["SHARELATEX_HEADER"]
|
||||||
|
header: process.env["SHARELATEX_HEADER"]
|
||||||
|
|
||||||
# Spell Check Languages
|
# Spell Check Languages
|
||||||
# ---------------------
|
# ---------------------
|
||||||
|
|
Loading…
Reference in a new issue