This file is indexed.

/etc/kohana2/modules/gmaps/config/gmaps.php is in libkohana2-modules-php 2.3.4-2.

This file is owned by root:root, with mode 0o644.

The actual contents of the file can be viewed below.

 1
 2
 3
 4
 5
 6
 7
 8
 9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
<?php defined('SYSPATH') OR die('No direct access allowed.');

/**
 * You should set your own API key in application/config/gmaps.php
 * This API key is usable for http://localhost/*
 */

$config['api_key'] = 'ABQIAAAAnfs7bKE82qgb3Zc2YyS-oBT2yXp_ZAY8_ufC3CFXhHIE1NvwkxSySz_REpPq-4WZA27OwgbtyR3VcA';

/**
 * Using a localised google domain gives more accurated results on geolocation
 * For example, searches for "Toledo" will return different results within the domain of Spain (http://maps.google.es) 
 * specified by a country code of "es" than within the default domain within the United States (http://maps.google.com).
 */

$config['api_domain'] = 'maps.google.com';

/**
 * This is used to determine how many times we should retry the geocode when Google sends back a 620 status code.
 * The 620 status code is used as a way to let you know Google is rate limiting your requests.
 */

$config['retries'] = 10;

/**
 * This is used to determine how long we should wait before retrying (in microseconds).
 * Default: 100000 (0.1 seconds)
 */

$config['retry_delay'] = 100000;