Skip to content

Instantly share code, notes, and snippets.

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

Vincent Boulboulouboule

🏠
Working from home
View GitHub Profile
@Gargron
Gargron / nginx.conf
Last active April 21, 2022 12:32
Example nginx configuration for proxying an S3 bucket through Nginx with cache and cache lock
server {
listen 443 ssl;
server_name files.example.com;
root /var/www/html;
keepalive_timeout 30;
location = / {
index index.html;
}