Skip to content
Projects
Groups
Snippets
Help
This project
Loading...
Sign in / Register
Toggle navigation
C
configuration
Overview
Overview
Details
Activity
Cycle Analytics
Repository
Repository
Files
Commits
Branches
Tags
Contributors
Graph
Compare
Charts
Issues
0
Issues
0
List
Board
Labels
Milestones
Merge Requests
0
Merge Requests
0
CI / CD
CI / CD
Pipelines
Jobs
Schedules
Charts
Wiki
Wiki
Snippets
Snippets
Members
Members
Collapse sidebar
Close sidebar
Activity
Graph
Charts
Create a new issue
Jobs
Commits
Issue Boards
Open sidebar
OpenEdx
configuration
Commits
f2da9914
Commit
f2da9914
authored
Feb 12, 2014
by
Carson Gee
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
Adding kibana nginx template
parent
1c326e1b
Hide whitespace changes
Inline
Side-by-side
Showing
1 changed file
with
61 additions
and
0 deletions
+61
-0
playbooks/roles/nginx/templates/kibana.j2
+61
-0
No files found.
playbooks/roles/nginx/templates/kibana.j2
0 → 100755
View file @
f2da9914
upstream elasticsearch_server {
server 127.0.0.1:9200;
}
server {
# Kibana server, templated by ansible
listen 443;
server_name {{ kibana_server_name }};
root {{ kibana_app_dir }}/htdocs;
access_log {{ COMMON_LOG_DIR }}/nginx/kibana.access.log ssl_combined;
error_log {{ COMMON_LOG_DIR }}/nginx/kibana.error.log error;
# Authentication restrictions to server
set $idok "no";
{%- for user in kibana_valid_users -%}
if ($ssl_client_s_dn ~ "/emailAddress={{ user }}@MIT.EDU") { set $idok "yes"; }
{%- endfor -%}
if ($idok !~ "yes") { return 403; }
# 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;
}
# Elastic Search
location /e {
rewrite /e/(.*) /$1 break;
proxy_pass http://elasticsearch_server;
proxy_set_header X-Real-IP $remote_addr;
proxy_set_header SSL_CLIENT_S_DN $ssl_client_s_dn;
proxy_set_header X-Forwarded-Protocol https; # sets HTTP_X_FORWARDED_PROTOCOL
proxy_set_header HTTP_X_FORWARDED_PROTO https; # sets HTTP_X_FORWARDED_PROTOCOL
proxy_ssl_session_reuse off;
proxy_redirect off;
}
# Kibana
location / {
root {{ kibana_app_dir }}/htdocs;
index index.html;
expires 1d;
try_files $uri/ $uri;
if (-f $request_filename) {
break;
}
}
}
Write
Preview
Markdown
is supported
0%
Try again
or
attach a new file
Attach a file
Cancel
You are about to add
0
people
to the discussion. Proceed with caution.
Finish editing this message first!
Cancel
Please
register
or
sign in
to comment