From 0dbd4c12488bd365a86e4726b2ae689b2da86a7c Mon Sep 17 00:00:00 2001 From: Egor Tensin Date: Sat, 3 Dec 2022 09:50:12 +0100 Subject: frontend: fix /mnt/cgitize being inaccessible to nginx I've had problems with doing "FROM nginx" instead of "FROM alpine" in the past, but hopefully fixing a version is enough to prevent them. --- docker/frontend/etc/nginx/http.d/default.conf | 20 -------------------- 1 file changed, 20 deletions(-) delete mode 100644 docker/frontend/etc/nginx/http.d/default.conf (limited to 'docker/frontend/etc/nginx/http.d') diff --git a/docker/frontend/etc/nginx/http.d/default.conf b/docker/frontend/etc/nginx/http.d/default.conf deleted file mode 100644 index dc27e85..0000000 --- a/docker/frontend/etc/nginx/http.d/default.conf +++ /dev/null @@ -1,20 +0,0 @@ -server { - listen 80 default_server; - listen [::]:80 default_server; - server_name _; - - location / { - include fastcgi_params; - fastcgi_pass unix:/run/fcgiwrap.sock; - - fastcgi_param SCRIPT_FILENAME /usr/share/webapps/cgit/cgit.cgi; - - # This looks stupid. Can I substitute any variable for $fastcgi_path_info? - fastcgi_split_path_info ^(/?)(.+)$; - fastcgi_param PATH_INFO $fastcgi_path_info; - } - - location /cgit/ { - alias /usr/share/webapps/cgit/; - } -} -- cgit v1.2.3