This repository has been archived on 2025-05-04. You can view files and clone it, but you cannot make any changes to it's state, such as pushing and creating new issues, pull requests or comments.
kittehcluster/nginx.conf
2024-07-13 16:56:20 -04:00

11 lines
No EOL
164 B
Nginx Configuration File

stream {
upstream k3s_servers {
server k3s-server-cinit:6443;
server k3s-server-1:6443;
}
server {
listen 6443;
proxy_pass k3s_servers;
}
}