Find centralized, trusted content and collaborate around the technologies you use most.
Teams
Q&A for work
Connect and share knowledge within a single location that is structured and easy to search.
我目前正在尝试一些东西,现在它正在尝试在 HTML 页面中显示日志文件的内容。
因此,我添加ssi on;了我的 Nginx.conf文件并将其添加到 HTML 页面:
ssi on;
.conf
<!--#include file="../../../../var/log/nginx/logs.access.log" -->
路径很好,但我总是遇到这个错误:
[处理指令时发生错误]
你有什么想法吗?
<!--#include file=在 nginx 中是一样的东西<!--# include virtual=,所以../../../../var/log/nginx/logs.access.log看起来不像是有效的请求。
<!--#include file=
<!--# include virtual=
../../../../var/log/nginx/logs.access.log
但是您可以像这样添加位置:
location = /logs.access.log { internal; root /var/log/nginx; }
并<!--#include file="/logs.access.log" -->相应地使用。
<!--#include file="/logs.access.log" -->