
In the past it was common to do scope.lookupvar but now it is only required when explicitly grabbing a different scope. All the variables in kibana.vhost.erb are available from the class that calls the template() function. Change-Id: I100bb764b5742b1f3068e5b86813c825f9f71868
32 lines
1.2 KiB
Plaintext
32 lines
1.2 KiB
Plaintext
<VirtualHost *:80>
|
|
ServerName <%= @vhost_name %>
|
|
ServerAdmin <%= @serveradmin %>
|
|
|
|
ErrorLog ${APACHE_LOG_DIR}/<%= @vhost_name %>-error.log
|
|
|
|
LogLevel warn
|
|
|
|
CustomLog ${APACHE_LOG_DIR}/<%= @vhost_name %>-access.log combined
|
|
|
|
<IfModule mod_proxy.c>
|
|
<% if @proxy_elasticsearch == true %>
|
|
# Proxy GETs for elasticsearch .*/_aliases, .*/_status, .*/_search,
|
|
# .*/_mapping, .*/_mapping/field/.*, _cluster/health, and _nodes.
|
|
RewriteEngine on
|
|
RewriteCond %{REQUEST_METHOD} GET
|
|
RewriteRule ^/elasticsearch/((.*/)?_aliases|(.*/)?_status|(.*/)?_search|(.*/)?_mapping|(.*/)?_mapping/field/(.*)?|_cluster/health|_nodes)$ http://<%= @discover_nodes[0] %>/$1 [P]
|
|
RewriteCond %{REQUEST_METHOD} POST
|
|
RewriteRule ^/elasticsearch/(_aliases|(.*/)?_search)$ http://<%= @discover_nodes[0] %>/$1 [P]
|
|
RewriteCond %{REQUEST_METHOD} OPTIONS
|
|
RewriteRule ^/elasticsearch/((.*/)?_search)$ http://<%= @discover_nodes[0] %>/$1 [P]
|
|
<Proxy http://<%= @discover_nodes[0] %>/>
|
|
ProxySet connectiontimeout=15 timeout=120
|
|
</Proxy>
|
|
ProxyPassReverse /elasticsearch/ http://<%= @discover_nodes[0] %>/
|
|
<% end %>
|
|
|
|
ProxyPass / http://127.0.0.1:5601/ retry=0
|
|
ProxyPassReverse / http://127.0.0.1:5601/
|
|
</IfModule>
|
|
</VirtualHost>
|