You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
 
 
 
 
 
 

16 lines
330 B

apiVersion: v1
kind: ConfigMap
metadata:
name: https-config
data:
default.conf: |
server {
listen 80;
listen [::]:80;
server_name _;
location / {
add_header Content-Type text/plain; # Prevents download
return 200 "¡Hola mundo! Demo de Kubernetes + Let's encrypt.";
}
}