first-commit

This commit is contained in:
zeaslity
2023-05-15 16:49:09 +08:00
commit 06cba6ca3c
816 changed files with 157018 additions and 0 deletions

View File

@@ -0,0 +1,16 @@
upstream redis-cluster {
ip_hash;
server localhost:21370 ;
server localhost:21371 ;
server localhost:21372 ;
server localhost:21373 ;
server localhost:21374 ;
server localhost:21375 ;
}
server {
listen 26379;
proxy_pass redis-cluster;
}