Skip to content

Instantly share code, notes, and snippets.

View satyendrakarn's full-sized avatar

satyendra karn satyendrakarn

View GitHub Profile
@satyendrakarn
satyendrakarn / nginx_deployment.yaml
Created February 24, 2022 13:21 — forked from petitviolet/nginx_deployment.yaml
sample Nginx configuration on Kubernetes using ConfigMap to configure nginx.
apiVersion: v1
kind: ConfigMap
metadata:
name: nginx-conf
data:
nginx.conf: |
user nginx;
worker_processes 3;
error_log /var/log/nginx/error.log;
events {