Skip to content

Instantly share code, notes, and snippets.

View mariotristan's full-sized avatar
🏠
Working from home

Mario Tristan mariotristan

🏠
Working from home
View GitHub Profile
@mariotristan
mariotristan / nginx.conf
Created November 2, 2022 23:30
Nginx conf to customize log format and include request-body with no escape
events {
worker_connections 768;
}
http {
# Nginx will handle gzip compression of responses from the app server
gzip on;
gzip_proxied any;
gzip_types text/plain application/json;
gzip_min_length 1000;
{"lastUpload":"2020-12-22T00:58:26.535Z","extensionVersion":"v3.4.3"}

Computers

Peripherals

Software

@mariotristan
mariotristan / System Design.md
Created April 24, 2016 03:32 — forked from vasanthk/System Design.md
System Design Cheatsheet

#System Design Cheatsheet

Picking the right architecture = Picking the right battles + Managing trade-offs

##Basic Steps

  1. Clarify and agree on the scope of the system
  • User cases (description of sequences of events that, taken together, lead to a system doing something useful)
    • Who is going to use it?
    • How are they going to use it?