diff options
author | Igor Sysoev <igor@sysoev.ru> | 2017-08-26 13:37:44 +0300 |
---|---|---|
committer | Igor Sysoev <igor@sysoev.ru> | 2017-08-26 13:37:44 +0300 |
commit | d3a6d7805f9f869f3a786080a9e0586b4844034f (patch) | |
tree | 5eb2c583830e70f4acb8f45a5059676f4784d38a /src/nxt_runtime.h | |
parent | 897b860e832c9eba67ba7d01d0775f64ade132f6 (diff) | |
download | unit-d3a6d7805f9f869f3a786080a9e0586b4844034f.tar.gz unit-d3a6d7805f9f869f3a786080a9e0586b4844034f.tar.bz2 |
Added configure options --prefix=PATH and --log=FILE.
A prefix is prepended to all relative names at configure stage.
There is no prefix by default.
A log file name can be relative.
The default log file name is "nginext.log".
Diffstat (limited to 'src/nxt_runtime.h')
-rw-r--r-- | src/nxt_runtime.h | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/src/nxt_runtime.h b/src/nxt_runtime.h index 4fa0f4f6..df8e162a 100644 --- a/src/nxt_runtime.h +++ b/src/nxt_runtime.h @@ -59,7 +59,7 @@ struct nxt_runtime_s { nxt_user_cred_t user_cred; const char *group; const char *pid; - const char *error_log; + const char *log; nxt_queue_t engines; /* of nxt_event_engine_t */ |