iredmail-doc/html_bk/debug.nginx.html

29 lines
1.7 KiB
HTML

<!DOCTYPE html>
<html>
<head>
<meta http-equiv="Content-Type" content="text/html; charset=utf-8" />
<title>Turn on debug mode in Nginx</title>
<link rel="stylesheet" type="text/css" href="./css/markdown.css" />
</head>
<body>
<div id="navigation">
<a href="https://www.iredmail.org" target="_blank">
<img alt="iRedMail web site"
src="./images/logo-iredmail.png"
style="vertical-align: middle; height: 30px;"
/>&nbsp;
<span>iRedMail</span>
</a>
&nbsp;&nbsp;//&nbsp;&nbsp;<a href="./index.html">Document Index</a></div><h1 id="turn-on-debug-mode-in-nginx">Turn on debug mode in Nginx</h1>
<p>To turn on debug mode in Nginx, please update Nginx config file
<code>/etc/nginx/conf-enabled/log.conf</code> (Linux/OpenBSD) or
<code>/usr/local/etc/nginx/conf-enabled/log.conf</code> (FreeBSD), append string <code>debug</code>
in parameter <code>error_log</code> like below:</p>
<pre><code>error_log ... debug;
</code></pre>
<p>Then restart Nginx service.</p>
<p>Nginx logs detailed debug info to <code>/var/log/nginx/error.log</code> (Linux/FreeBSD)
or <code>/var/www/logs/error.log</code> (OpenBSD).</p><div class="footer">
<p style="text-align: center; color: grey;">All documents are available in <a href="https://github.com/iredmail/docs/">GitHub repository</a>, and published under <a href="http://creativecommons.org/licenses/by-nd/3.0/us/" target="_blank">Creative Commons</a> license. You can <a href="https://github.com/iredmail/docs/archive/master.zip">download the latest version</a> for offline reading. If you found something wrong, please do <a href="https://www.iredmail.org/contact.html">contact us</a> to fix it.</p>
</div></body></html>