initial commit
This commit is contained in:
28
files/kibana/kibana.conf.j2
Normal file
28
files/kibana/kibana.conf.j2
Normal file
@@ -0,0 +1,28 @@
|
||||
server {
|
||||
listen 80;
|
||||
server_name logs.notprod.pl;
|
||||
root /var/www/kibana;
|
||||
|
||||
# Set image format types to expire in a very long time
|
||||
location ~* ^.+\.(jpg|jpeg|gif|png|ico)$ {
|
||||
access_log off;
|
||||
expires max;
|
||||
}
|
||||
|
||||
# Set css and js to expire in a very long time
|
||||
location ~* ^.+\.(css|js)$ {
|
||||
access_log off;
|
||||
expires max;
|
||||
}
|
||||
|
||||
# Catchall for everything else
|
||||
location / {
|
||||
root /var/www/kibana;
|
||||
index index.html;
|
||||
expires 1d;
|
||||
try_files $uri/ $uri;
|
||||
if (-f $request_filename) {
|
||||
break;
|
||||
}
|
||||
}
|
||||
}
|
||||
Reference in New Issue
Block a user