Skip to content

Instantly share code, notes, and snippets.

@lciolecki
lciolecki / nginx.conf
Created January 5, 2017 08:52
Nginx config for django rest framework + angular application
server {
listen 80;
listen 443 ssl;
server_name your-domain.com;
charset utf-8;
client_max_body_size 32M;
root /project/static;
index index.html;