Skip to content

Commit

Permalink
Merge pull request #207 from Kuadrant/limitador-tls
Browse files Browse the repository at this point in the history
Enabling TLS for Redis
  • Loading branch information
alexsnaps authored Sep 12, 2023
2 parents bf1c5df + 7e5eba5 commit f82272c
Show file tree
Hide file tree
Showing 3 changed files with 5 additions and 1 deletion.
2 changes: 2 additions & 0 deletions Cargo.lock

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

2 changes: 1 addition & 1 deletion Dockerfile
Original file line number Diff line number Diff line change
Expand Up @@ -14,7 +14,7 @@ RUN dnf -y --setopt=install_weak_deps=False --setopt=tsflags=nodocs install \
&& dnf -y --setopt=install_weak_deps=False --setopt=tsflags=nodocs install epel-release \
&& dnf config-manager --set-enabled powertools

RUN PKGS="gcc-c++ gcc-toolset-12-binutils-gold openssl3-devel protobuf-c protobuf-devel git clang kernel-headers" \
RUN PKGS="gcc-c++ gcc-toolset-12-binutils-gold openssl-devel protobuf-c protobuf-devel git clang kernel-headers" \
&& dnf install --nodocs --assumeyes $PKGS \
&& rpm --verify --nogroup --nouser $PKGS \
&& yum -y clean all
Expand Down
2 changes: 2 additions & 0 deletions limitador/Cargo.toml
Original file line number Diff line number Diff line change
Expand Up @@ -40,6 +40,8 @@ rocksdb = { version = "0.21.0", optional = true, features = ["multi-threaded-cf"
redis = { version = "0.23.1", optional = true, features = [
"connection-manager",
"tokio-comp",
"tls-native-tls",
"tokio-native-tls-comp",
] }
r2d2 = { version = "0.8", optional = true }
tokio = { version = "1", optional = true, features = [
Expand Down

0 comments on commit f82272c

Please sign in to comment.