Skip to content

Instantly share code, notes, and snippets.

@Dynalon
Dynalon / gist:56c6a0fd6519bcc2fd7350a0008e8c34
Created January 24, 2020 09:55 — forked from mikhailov/gist:9639593
Nginx S3 Proxy with caching
events {
worker_connections 1024;
}
http {
default_type text/html;
access_log /dev/stdout;
sendfile on;
keepalive_timeout 65;
@Dynalon
Dynalon / test.c
Created October 11, 2012 18:13 — forked from anonymous/test.c
Test
int main (void)
{
printf ("hello world!");
}