Skip to content

Commit

Permalink
scirius: add proxy capability to kibana 4
Browse files Browse the repository at this point in the history
  • Loading branch information
regit committed Jan 2, 2016
1 parent 8887694 commit cb5aff9
Showing 1 changed file with 4 additions and 0 deletions.
4 changes: 4 additions & 0 deletions scirius/urls.py
Original file line number Diff line number Diff line change
Expand Up @@ -13,6 +13,10 @@
url(r'^accounts/', include('accounts.urls')),
url(r'^'+ settings.RULESET_MIDDLEWARE + '/', include('' + settings.RULESET_MIDDLEWARE + '.urls')),
url('^$', homepage),
# Forward "app/kibana.*" to kibana (work around to https://github.com/elastic/kibana/issues/5230)
url(r'^(?P<path>app/kibana.*)$', KibanaProxyView.as_view()),
# Forward timelion plugin
url(r'^(?P<path>timelion/.*)$', KibanaProxyView.as_view()),
url(r'^kibana/(?P<path>.*)$', KibanaProxyView.as_view()),
url(r'^elasticsearch/(?P<path>.*)$', ElasticsearchProxyView.as_view()),
)

0 comments on commit cb5aff9

Please sign in to comment.