diff options
author | Andrew Lewis <nerf@judo.za.org> | 2021-05-04 21:43:55 +0200 |
---|---|---|
committer | Andrew Lewis <nerf@judo.za.org> | 2021-05-04 21:52:33 +0200 |
commit | a84cecac6bef1211cf8ab245d997b6ac64b6686a (patch) | |
tree | 6df6518a5cc60411967a513fa8e5bc418316a1d5 /test/functional/configs/nginx.conf | |
parent | db4da2c22d159d1a6450b9447ad90e1795e5c535 (diff) | |
download | rspamd-a84cecac6bef1211cf8ab245d997b6ac64b6686a.tar.gz rspamd-a84cecac6bef1211cf8ab245d997b6ac64b6686a.zip |
[Test] Use automatically exported variables
Diffstat (limited to 'test/functional/configs/nginx.conf')
-rw-r--r-- | test/functional/configs/nginx.conf | 6 |
1 files changed, 3 insertions, 3 deletions
diff --git a/test/functional/configs/nginx.conf b/test/functional/configs/nginx.conf index 72472d16e..9a27f4924 100644 --- a/test/functional/configs/nginx.conf +++ b/test/functional/configs/nginx.conf @@ -1,8 +1,8 @@ events { } worker_processes 1; -pid ${TMPDIR}/nginx.pid; -error_log ${TMPDIR}/error.log; +pid ${RSPAMD_TMPDIR}/nginx.pid; +error_log ${RSPAMD_TMPDIR}/error.log; http { default_type application/octet-stream; sendfile on; @@ -13,7 +13,7 @@ http { server_name localhost; location / { - root ${TMPDIR}; + root ${RSPAMD_TMPDIR}; autoindex on; } } |