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" -->