From 29d16c46dfbc8eb9a31b10a5bf72f1330c890d5c Mon Sep 17 00:00:00 2001 From: eug-vs Date: Wed, 23 Mar 2022 14:09:58 +0300 Subject: feat: add website and git-server playbooks --- files/nginx/cgit | 20 ++++++++++++++++++++ 1 file changed, 20 insertions(+) create mode 100644 files/nginx/cgit (limited to 'files/nginx/cgit') diff --git a/files/nginx/cgit b/files/nginx/cgit new file mode 100644 index 0000000..f31ec08 --- /dev/null +++ b/files/nginx/cgit @@ -0,0 +1,20 @@ +server { + server_name git.eug-vs.xyz + + root /usr/share/cgit ; + try_files $uri @cgit ; + + location @cgit { + include fastcgi_params; + fastcgi_param SCRIPT_FILENAME /usr/lib/cgit/cgit.cgi; + fastcgi_param PATH_INFO $request_uri; + fastcgi_param QUERY_STRING $query_string; + fastcgi_pass unix:/run/fcgiwrap.socket; + } + + # Serve static files + location ~* ^.+\.(css|png|ico)$ { + root /usr/share/cgit; + expires 30d; + } +} -- cgit v1.2.3