Skip to content

Commit

Permalink
Merge pull request #32 from pramod444/main
Browse files Browse the repository at this point in the history
Added streams.sample.conf file for nginx configuration.
  • Loading branch information
lalithkota authored Jun 10, 2024
2 parents 445f666 + 7f08eda commit 327eae0
Showing 1 changed file with 12 additions and 0 deletions.
12 changes: 12 additions & 0 deletions kubernetes/nginx/streams.sample.conf
Original file line number Diff line number Diff line change
@@ -0,0 +1,12 @@
upstream myInternalIngressUpstream {
<cluster-nodeport-internal-of-all-nodes>;
}

server{
listen <cluster-nginx-internal-ip>:443 ssl;

ssl_certificate <cluster-ssl-certificate>;
ssl_certificate_key <cluster-ssl-certificate-key>;

proxy_pass myInternalIngressUpstream;
}

0 comments on commit 327eae0

Please sign in to comment.