Files
cloud-config/jenova/nginx-config.yaml
Paul Mathieu 0cf7c9b908 Initial commit: mushroom, zetikettes
With basic config to have TLS certs with ACME.
It works!

TODO:
- gitea
- bar-jupyter
2026-03-02 06:48:46 +00:00

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;
}
}