From 40e62c9d8df2a0448649885ac361047ee567f77e Mon Sep 17 00:00:00 2001 From: Pavel 'LEdoian' Turinsky Date: Fri, 17 Dec 2021 14:15:16 +0100 Subject: [PATCH] Add more notes to nginx config --- conf/nginx.conf | 7 +++++++ 1 file changed, 7 insertions(+) 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 + } }