With basic config to have TLS certs with ACME. It works! TODO: - gitea - bar-jupyter
14 lines
265 B
YAML
14 lines
265 B
YAML
apiVersion: v1
|
|
kind: ConfigMap
|
|
metadata:
|
|
name: nginx-config
|
|
data:
|
|
default.conf: |
|
|
server {
|
|
listen 80;
|
|
root /usr/share/nginx/html;
|
|
location /zetikettes {
|
|
return 301 https://zetikettes.jenova.ponteilla.net;
|
|
}
|
|
}
|