diff --git a/conf/nginx.conf b/conf/nginx.conf index 5fcd9c1..ba905f8 100644 --- a/conf/nginx.conf +++ b/conf/nginx.conf @@ -1,7 +1,14 @@ server { + ssl on; + TODO: gzip? # TODO FOR ADMIN: Config listens and SSL and server_name and whatnot location / { include uwsgi_params; uwsgi_pass unix:/var/wish/sock; + } + + location /static { + TODO + } }