You cannot select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
|
# mount this file to /etc/nginx/conf.d
|
|
server {
|
|
listen 80;
|
|
|
|
root /usr/share/nginx/html;
|
|
|
|
location / {
|
|
index index.html;
|
|
auth_basic "Basic Auth from Kubernetes secret";
|
|
auth_basic_user_file /secrets/.htpasswd;
|
|
}
|
|
}
|