actualizacion domingo

This commit is contained in:
2025-05-04 09:09:43 +00:00
parent 8ed2a07946
commit a4078ea882
26 changed files with 650 additions and 17 deletions

View File

@@ -0,0 +1,35 @@
apiVersion: v1
kind: ConfigMap
metadata:
name: nginx-router-config
namespace: external
data:
router.conf: |
server {
listen 80 default_server;
server_name router.manabo.org;
location / {
proxy_pass https://192.168.1.1;
proxy_ssl_verify off;
}
}
ilo1.conf: |
server {
listen 80;
server_name ilo1.manabo.org;
location / {
proxy_pass https://192.168.0.4;
proxy_ssl_verify off;
}
}
ilo2.conf: |
server {
listen 80;
server_name ilo2.manabo.org;
location / {
proxy_pass https://192.168.0.5;
proxy_ssl_verify off;
}
}