找不到nginx错误日志文件

时间:2017-10-31 13:58:36

标签: node.js nginx

我的nginx.conf文件中有以下几行:

http {
    log_format  main  '$remote_addr - $remote_user [$time_local] "$request" '
                      '$status $body_bytes_sent "$http_referer" '
                      '"$http_user_agent" "$http_x_forwarded_for"';

    access_log  /var/log/nginx/access.log  main;
    error_log /var/log/nginx/error.log error;

    sendfile            on;
    tcp_nopush          on;
    tcp_nodelay         on;
    keepalive_timeout   65;
    types_hash_max_size 2048;

这清楚地表明了错误日志文件的位置。我在我的网站上看到nginx错误,但我无法在此位置找到该文件。文件夹nginx为空。

0 个答案:

没有答案