Reverse proxy¶
Using Symfony reverse proxy¶
To use the Symfony reverse proxy, you must change your public/index.php
front controller script and wrap Ibexa\Bundle\HttpCache\AppCache
instead of Symfony\Bundle\FrameworkBundle\HttpCache\HttpCache
around the kernel.
1 2 3 4 5 6 7 8 9 10 11 12 13 14 |
|
Caution
Don't enable the Symfony reverse proxy in public/index.php
if you intend to use Varnish or Fastly.
You may only use one HTTP cache at a time.
Using Varnish or Fastly¶
As Ibexa DXP is built on top of Symfony, it uses standard HTTP cache headers. By default, the Symfony reverse proxy is used to handle cache. You can replace it with other reverse proxies, such as Varnish, or CDN like Fastly.
Using a different proxy is highly recommended as they provide better performance and more advanced features such as grace handling, configurable logic through VCL and much more.
Note
Use of Varnish or Fastly is a requirement for a Clustering setup, as Symfony Proxy does not support sharing cache between several application servers.
VCL base files¶
For reverse proxies to work properly with your installation, you need to add the corresponding VCL files for your HTTP Cache.
- Varnish VCL xkey example
- Fastly can be found in
vendor/ibexa/fastly/fastly
. You must install the following to use Fastly:ez_main.vcl
as the main custom VCLez_user_hash.vcl
as another custom VCLsnippet_re_enable_shielding.vcl
as snippet
The provided .vcl
files work both with Fastly Shielding enabled and without it.
If you decide to use Fastly VCL, consider using Fastly CLI with it to manage VCL files from the command line.
To learn more, see Prepare to use Fastly locally and Introduction to Fastly CLI.
Tip
Support for Fastly Shielding was added in Ibexa DXP v3.3.24 and v4.1.6
When you extend FOSHttpCacheBundle, you can also adapt your VCL further with FOSHttpCache documentation to use additional features.
Configure Varnish and Fastly¶
The configuration of Ibexa DXP for using Varnish or Fastly requires a few steps, starting with configuring proxy.
Failing to configure reverse proxies correctly may introduce several problems, including, but not limited to:
- Ibexa DXP generating links with a wrong protocol schema (HTTP instead of HTTPS) if HTTPS termination is done before the web server due to the
X-Forward-Proto
headers being ignored - Ibexa DXP generating links with wrong port numbers due to the
X-Forward-Port
headers being ignored - Back Office showing the login screen because JWT tokens are not accepted due to the
X-Forward-For
headers being ignored
Configure Symfony front controller¶
You need to consider your TrustedProxy
configuration when you use Symfony behind a load balancer or a reverse proxy.
To configure trusted proxies, use Symfony semantic configuration under
the framework.trusted_proxies
configuration key, for example:
1 2 |
|
Careful when trusting dynamic IP using REMOTE_ADDR
value or similar
On Platform.sh, Varnish does not have a static IP, like with AWS LB.
For this reason, the TRUSTED_PROXIES
env variable supports being set to value REMOTE_ADDR
, which is equal to:
1 |
|
When trusting remote IP like this, make sure your application is only accessible through Varnish. If it is accessible in other ways, this may result in trusting, for example, the IP of client browser instead, which would be a serious security issue.
Make sure that all traffic always comes from the trusted proxy/load balancer, and that there is no other way to configure it.
When using Fastly, you need to set trusted_proxies
according to the IP ranges used by Fastly.
Tip
You don't have to set trusted_proxies
when using Fastly on Platform.sh.
The Platform.sh router automatically changes the source IP of requests coming from Fastly,
replacing the source IP with the actual client IP and removing any X-FORWARD-...
header in the request before it reaches Ibexa DXP.
For more information about setting these variables, see Configuration examples.
Update YML configuration¶
Next, you need to tell Ibexa DXP to use an HTTP-based purge client (specifically the FosHttpCache Varnish purge client), and specify the URL that Varnish can be reached on:
Configuration | Parameter | Environment variable | Possible values |
---|---|---|---|
ibexa.http_cache.purge_type |
purge_type |
HTTPCACHE_PURGE_TYPE |
local, varnish, fastly |
ibexa.system.<scope>.http_cache.purge_servers |
purge_server |
HTTPCACHE_PURGE_SERVER |
Array of URLs to proxies when using Varnish or Fastly (https://api.fastly.com ). |
ibexa.system.<scope>.http_cache.varnish_invalidate_token |
varnish_invalidate_token |
HTTPCACHE_VARNISH_INVALIDATE_TOKEN |
(Optional) For token-based authentication. |
ibexa.system.<scope>.http_cache.fastly.service_id |
fastly_service_id |
FASTLY_SERVICE_ID |
Service ID to authenticate with Fastly. |
ibexa.system.<scope>.http_cache.fastly.key |
fastly_key |
FASTLY_KEY |
Service key/token to authenticate with Fastly. |
If you need to set multiple purge servers, configure them in the YAML configuration, instead of parameter or environment variable, as they only take single string value.
Example configuration for Varnish as reverse proxy, providing that front controller has been configured:
1 2 3 4 5 6 7 8 9 10 |
|
Varnish and Basic Auth¶
If the Varnish server is protected by Basic Auth, specify the Basic Auth credentials within the purge_servers
setting using the format:
1 2 |
|
Varnish is enabled by default when using Ibexa Cloud and the purge_servers
setting is set automatically.
To enable Basic Auth on Ibexa Cloud when using Varnish, specify the credentials using the following environment variables to make sure that Varnish is reachable:
1 2 |
|
If you want to use Basic Auth with Fastly on Ibexa Cloud, please see Enable basic-auth on Fastly.
Invalidating Varnish cache using tokens
In setups where the Varnish server IP can change (for example, on Ibexa Cloud),
you can use token-based cache invalidation through ez_purge_acl
.
In such situation, use strong, secure hash and make sure to keep the token secret.
Ensure proper Captcha behavior ¶
If your installation uses Varnish and you want users to be able to configure and use Captcha in their forms, you must enable sending Captcha data as a response to an Ajax request. Otherwise, Varnish does not allow for the transfer of Captcha data to the form, and as a result, users see an empty image.
To enable sending Captcha over Ajax, add the following configuration:
1 2 3 4 5 6 |
|
Update custom Captcha block ¶
If you created a custom Captcha block for your site by overriding the default file (vendor/gregwar/captcha-bundle/Resources/views/captcha.html.twig
),
you must make the following changes to the custom block template file:
- change the name of the block to
ajax_captcha_widget
- include the JavaScript file:
1 |
|
- add a data attribute with a
fieldId
value:
1 |
|
As a result, your file should be similar to this example.
For more information about configuring Captcha fields, see Captcha field.
Use Fastly as HttpCache proxy¶
Fastly delivers Varnish as a CDN service and is supported with Ibexa DXP. To learn how it works, see Fastly documentation.
Configure Fastly in YML¶
1 2 3 4 5 6 7 8 9 10 11 12 13 |
|
Configure Fastly using environment variables¶
See the example below to configure Fastly with the .env
file:
1 2 3 4 5 6 7 |
|
Configure Fastly on Platform.sh¶
If you use Platform.sh, it is recommended to configure all environment variables through Platform.sh variables. In Ibexa DXP, Varnish is enabled by default. To use Fastly, first you must disable Varnish
Get Fastly service ID and API token¶
To get the service ID, log in to https://www.fastly.com/. In the upper menu, click the CONFIGURE tab. The service ID is displayed next to the name of your service on any page.
For instructions on how to generate a Fastly API token, see the Fastly guide.
The API token needs the purge_all
an purge_select
scopes.
Configuration examples¶
See below the most common configuration examples for the system, using environment variables.
Example for Varnish with the .env
file:
1 2 |
|
Example for Apache with mod_env
:
1 2 |
|
Example for Nginx:
1 2 |
|
Example for Platform.sh:
You can configure environment variables through Platform.sh variables.
Tip
For HTTP cache, you will most likely only use this for configuring Fastly for production and optionally staging,
allowing variables:env:
in .platform.app.yaml
to, for example, specify Varnish or Symfony proxy as default for dev environment.
Apache with Varnish¶
1 2 3 4 5 6 7 8 9 |
|
Nginx with Fastly¶
1 2 3 4 5 6 7 8 9 |
|
Stale cache¶
Stale cache, or grace mode in Varnish, occurs when:
- Cache is served some time after the TTL expired.
- When the back-end server does not respond.
This has several benefits for high traffic installations to reduce load to the back end. Instead of creating several concurrent requests for the same page to the back end, the following happens when a page has been soft purged:
- Next request hitting the cache triggers an asynchronous lookup to the back end.
- If cache is still within grace period, first and subsequent requests for the content are served from cache, and do not wait for the asynchronous lookup to finish.
- The back-end lookup finishes and refreshes the cache so any subsequent requests get a fresh cache.
By default, Ibexa DXP always soft purges content on reverse proxies that support it (Varnish and Fastly), with the following logic in the out-of-the-box VCL:
- Cache is within grace period.
- Either the server is not responding, or the request comes without a session cookie (anonymous user).
Serving grace is not always allowed by default because:
- It is a safe default. Even if just for anonymous users, stale cache can easily be confusing during acceptance testing.
- It means REST API, which is used by the Back Office, would serve stale data, breaking the UI.
Customizing stale cache handling
If you want to use grace handling for logged-in users as well, you can adapt the provided VCL to add a condition for opting out if the request has a cookie and the path contains REST API prefix to make sure the Back Office is not negatively affected.
If you want to disable grace mode, you can adapt the VCL to do hard instead of soft purges, or set grace/stale time to 0s
.