You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
To explore more the communication between the web server and Varnish, you can find other examples of requests done directly to the web server while impersonating Varnish in [Fetching user context hash](content_aware_cache.md#fetching-user-context-hash) and [Fetching HTML response](content_aware_cache.md#fetching-html-response).
127
+
128
+
You can use `ddev varnishlog` command to monitor Varnish logs in real time.
129
+
Due to how parameters are passed to the container, you may have to wrap some parameters in quotes twice, for example, the purge request monitoring:
130
+
131
+
```bash
132
+
ddev varnishlog -q "'ReqMethod ~ PURGE.*'";
133
+
```
134
+
135
+
For more information on topics such as available configurations, command lines, or monitoring, see [ddev/ddev-varnish README](https://github.com/ddev/ddev-varnish).
136
+
137
+
### Fastly
138
+
139
+
For Fastly (as for [[[= product_name_connect =]]](https://doc.ibexa.co/projects/connect/en/latest/)), the instance must be visible from Internet.
140
+
141
+
To use [ngrok](https://ngrok.com/) alongside [`ddev share`](https://docs.ddev.com/en/stable/users/topics/sharing/#using-ddev-share-easiest) is probably the easiest way to achieve this.
142
+
143
+
Be careful when making a local development instance visible from the internet.
144
+
For example:
145
+
146
+
- close ngrok tunnels when not needed anymore
147
+
- keep your ngrok URL private and share it only with trusted recipients
148
+
- don't use it for live demo where the URL could be seen
149
+
- don't store it on a Fastly or [[= product_name_connect =]] accounts used by external people
150
+
151
+
See [Configure and customize Fastly](fastly.md) for the Fastly side.
152
+
30
153
## Install search engine
31
154
32
155
A [search engine](search_engines.md) can be added to the cluster.
0 commit comments