mirror of
https://github.com/Dannecron/netology-devops.git
synced 2025-12-25 15:22:37 +03:00
21 lines
564 B
YAML
21 lines
564 B
YAML
apiVersion: v1
|
|
data:
|
|
nginx.conf: |
|
|
server {
|
|
listen 80;
|
|
server_name netology.ru www.netology.ru;
|
|
access_log /var/log/nginx/domains/netology.ru-access.log main;
|
|
error_log /var/log/nginx/domains/netology.ru-error.log info;
|
|
location / {
|
|
include proxy_params;
|
|
proxy_pass http://10.10.10.10:8080/;
|
|
}
|
|
}
|
|
kind: ConfigMap
|
|
metadata:
|
|
creationTimestamp: "2022-12-29T03:11:21Z"
|
|
name: nginx-config
|
|
namespace: default
|
|
resourceVersion: "703"
|
|
uid: 8dfa9f4c-6d89-4fbf-b3f6-1cd87b16710b
|