# run this in one tab | |
docker run --rm -it --name some-redis redis | |
# run this in another tab | |
docker exec -it some-redis redis-cli | |
127.0.0.1:6379> set authentication "access_by_lua_block||if token ~= 'token' then \n return ngx.exit(ngx.HTTP_FORBIDDEN) \n else \n ngx.header['Set-Cookie'] = {'superstition=token'} \n end" | |
OK | |
127.0.0.1:6379> get authentication | |
"access_by_lua_block||if token ~= 'token' then \n return ngx.exit(ngx.HTTP_FORBIDDEN) \n else \n ngx.header['Set-Cookie'] = {'superstition=token'} \n end" | |
127.0.0.1:6379> sadd coding_units authentication | |
(integer) 1 | |
127.0.0.1:6379> smembers coding_units | |
1) "authentication" | |
127.0.0.1:6379> sadd coding_units anewcomputingunit | |
(integer) 1 | |
127.0.0.1:6379> smembers coding_units | |
1) "authentication" | |
2) "anewcomputingunit" |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment