Primer commit

This commit is contained in:
2025-05-03 22:43:39 +00:00
commit 2c8f151b46
6 changed files with 93 additions and 0 deletions

15
configmaps/configmap.yaml Normal file
View File

@ -0,0 +1,15 @@
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;
}
}