Hi folks
I am happy to announce the new formal release, 1.9.7.2, of the
OpenResty web platform based on NGINX and Lua:
https://openresty.org/#Download
Both the (portable) source code distribution and the Win32 binary
distribution are provided on this Download page.
This version is an import
Hello,
If I have the following config
upstream ImageCluster {
server 10.1.1.1;
server 10.1.1.2;
server 10.1.1.3;
hash $cachekey consistent;
}
and wish to swap 10.1.1.3 to 10.1.1.5
would it be better to delete 10.1.1.3, restart and wait for the hash keys
to update,
add 10.1.1.5 and then
Thank you for your reply.
You replied:
> With Config1 and Config2 you have 160 hash points per each server
(duplicates are removed)
Does that mean
I could just shorten the whole config to
upstream ImageCluster {
server 10.1.1.1;
server 10.1.1.2;
server 10.1.1.3;
hash $cachekey consi
On 21/01/2016 20:38, nanaya wrote:
Something like this?
http://nginx.org/en/docs/http/ngx_http_secure_link_module.html
No.
The idea is that a client have the full url to the resource but it will
be restricted using a token.
The token can be either stored in a DB such as memcached\redis or
ano
Hi,
On Fri, Jan 22, 2016, at 03:16, Eliezer Croitoru wrote:
> I have seen that couple media sites are using the "token" query term for
> access control to some media content and I was wondering what module can
> do that?
> For examples the request:
> http://example.com/media/11.mp4?token=xyz
I have seen that couple media sites are using the "token" query term for
access control to some media content and I was wondering what module can
do that?
For examples the request:
http://example.com/media/11.mp4?token=xyz_very_long_token
allows access to only this 11.mp4 specific file
Hi,
> On 21 Jan 2016, at 15:41, highclass99 wrote:
>
> I have a question about "hash $cachekey" consistent;
> Would the following Config 1, Config 2, Config 3 be exactly the same of
> different?
> i.e. if I swap the configurations would the cache keys stay consistent?
> The reason I am asking i
I have a question about "hash $cachekey" consistent;
Would the following Config 1, Config 2, Config 3 be exactly the same of
different?
i.e. if I swap the configurations would the cache keys stay consistent?
The reason I am asking is I have a large configuration similar to Config 2
and am not sure