2019-10-20 15:47:39 +02:00
|
|
|
<?php
|
|
|
|
|
|
|
|
|
|
// -----
|
|
|
|
|
// Important: read the instructions in README.md or at:
|
|
|
|
|
// https://github.com/matomo/matomo/tree/master/misc/proxy-hide-matomo-url#matomo-proxy-hide-url
|
|
|
|
|
// -----
|
|
|
|
|
|
|
|
|
|
// Edit the line below, and replace http://your-matomo-domain.example.org/matomo/
|
|
|
|
|
// with your Matomo URL ending with a slash.
|
|
|
|
|
// This URL will never be revealed to visitors or search engines.
|
2024-01-10 16:23:02 +01:00
|
|
|
$PIWIK_URL = '__PIWIK_URL__';
|
2019-10-20 15:47:39 +02:00
|
|
|
|
|
|
|
|
// Edit the line below and replace http://your-tracker-proxy.org/ with the URL to your tracker-proxy
|
|
|
|
|
// setup. This URL will be used in Matomo output that contains the Matomo URL, so your Matomo is effectively
|
|
|
|
|
// hidden.
|
2024-01-10 16:23:02 +01:00
|
|
|
$PROXY_URL = '__PROXY_URL__';
|
2019-10-20 15:47:39 +02:00
|
|
|
|
|
|
|
|
// Edit the line below, and replace xyz by the token_auth for the user "UserTrackingAPI"
|
|
|
|
|
// which you created when you followed instructions above.
|
2024-01-10 16:23:02 +01:00
|
|
|
$TOKEN_AUTH = '__TOKEN_AUTH__';
|
2019-10-20 15:47:39 +02:00
|
|
|
|
|
|
|
|
// Maximum time, in seconds, to wait for the Matomo server to return the 1*1 GIF
|
|
|
|
|
$timeout = 5;
|
|
|
|
|
|
|
|
|
|
// By default, the HTTP User Agent will be set to the user agent of the client requesting piwik.php
|
|
|
|
|
// Edit the line below to force the proxy to always use a specific user agent string.
|
|
|
|
|
$user_agent = '';
|
|
|
|
|
|
|
|
|
|
// In some situations the backend takes the sending IP address into account
|
|
|
|
|
// which by default is the IP address of the server/service proxy.php is executed from.
|
|
|
|
|
// If $http_forward_header is set, the clients IP address is sent over in the
|
2024-01-10 16:23:02 +01:00
|
|
|
// header field with the given name. An empty string means do not send the header.
|
2019-10-20 15:47:39 +02:00
|
|
|
// A common header name is 'X-Forwarded-For'.
|
|
|
|
|
//
|
|
|
|
|
// In order to work, the http server serving the matomo instance, has to be configured
|
|
|
|
|
// to honor the additional header.
|
|
|
|
|
//
|
|
|
|
|
// For apache http see https://httpd.apache.org/docs/2.4/mod/mod_remoteip.html
|
|
|
|
|
// for nginx see https://www.nginx.com/resources/wiki/start/topics/examples/forwarded/
|
|
|
|
|
//
|
|
|
|
|
$http_ip_forward_header = '';
|