Skip to content

Instantly share code, notes, and snippets.

View talesmm14's full-sized avatar
🎯
Focusing

Tales Melquiades talesmm14

🎯
Focusing
View GitHub Profile
@reginadiana
reginadiana / README-TEMPLATE.md
Last active July 6, 2024 01:01
Template sugestivo para documentação de projetos

Titulo ou Arte do Projeto

@petitviolet
petitviolet / nginx_deployment.yaml
Created March 11, 2018 11:04
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 {