nexus stuff

This commit is contained in:
2022-04-16 18:04:52 +02:00
parent 473bedc5e9
commit 94d50a5072
5 changed files with 25 additions and 6 deletions

14
host_vars/nexus.yaml Normal file
View File

@ -0,0 +1,14 @@
---
webserver:
defaultservername: nexus.kmlabz.com
customrule: |
server {
listen 443 ssl http2;
listen [::]:443 ssl http2;
server_name registry.kmlabz.com;
ssl_certificate /etc/ssl/certs/ssl-cert-snakeoil.pem;
ssl_certificate_key /etc/ssl/private/ssl-cert-snakeoil.key;
location /{
proxy_pass http://127.0.0.1:8080;
}
}