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
The suffix to be used for the Redis key under which the activated revision content will be stored in Redis. By default this option will be `"current-content"`. This makes the default activated revision in Redis looks like: `project.name() + ':index:current-content'`
128
+
129
+
This makes it possible to serve content completely from within NGINX using the [redis](https://www.nginx.com/resources/wiki/modules/redis/) module without doing a primary key lookup.
130
+
131
+
```
132
+
server {
133
+
location / {
134
+
set $redis_key project-name:index:current-content;
135
+
redis_pass name:6379;
136
+
default_type text/html;
137
+
}
138
+
}
139
+
```
140
+
141
+
*Default:*`current-content`
142
+
125
143
### allowOverwrite
126
144
127
145
A flag to specify whether the revision should be overwritten if it already exists in Redis.
0 commit comments