diff options
author | Egor Tensin <Egor.Tensin@gmail.com> | 2022-03-26 12:44:29 +0300 |
---|---|---|
committer | Egor Tensin <Egor.Tensin@gmail.com> | 2022-03-26 12:44:31 +0300 |
commit | 0f5dbcc3bdeb401f00c1cdcb7b0ef826003b5bd7 (patch) | |
tree | d6d591ba8845d6cda37c756a44f9c92605c7df09 /docker/frontend/etc/nginx/conf.d/default.conf | |
parent | docker: run once at startup, even when in cron (diff) | |
download | cgitize-0f5dbcc3bdeb401f00c1cdcb7b0ef826003b5bd7.tar.gz cgitize-0f5dbcc3bdeb401f00c1cdcb7b0ef826003b5bd7.zip |
docker: add a frontend nginx image
At first, I built a custom image at https://egort.name/. It had a rather
long development history, and I just copied the files from there.
Diffstat (limited to 'docker/frontend/etc/nginx/conf.d/default.conf')
-rw-r--r-- | docker/frontend/etc/nginx/conf.d/default.conf | 24 |
1 files changed, 24 insertions, 0 deletions
diff --git a/docker/frontend/etc/nginx/conf.d/default.conf b/docker/frontend/etc/nginx/conf.d/default.conf new file mode 100644 index 0000000..4dd9402 --- /dev/null +++ b/docker/frontend/etc/nginx/conf.d/default.conf @@ -0,0 +1,24 @@ +server { + listen 80 default_server; + listen [::]:80 default_server; + server_name _; + + location / { + index index.html; + } + + location /cgit/ { + alias /usr/share/cgit/; + } + + location /git/ { + include fastcgi_params; + fastcgi_pass unix:/run/fcgiwrap.sock; + + fastcgi_param CGIT_CONFIG /etc/cgit/cgitrc; + fastcgi_param SCRIPT_FILENAME /usr/lib/cgit/cgit.cgi; + + fastcgi_split_path_info ^(/git/?)(.+)$; + fastcgi_param PATH_INFO $fastcgi_path_info; + } +} |