stagit

static git page generator  https://git.ce9e.org
git clone https://git.ce9e.org/stagit.git

commit
d37c16a38bee59506d906fd0a8fe4afee467976b
parent
0160d28c768c7ac3c4af5b96a76d9425f842e870
Author
Tobias Bengfort <tobias.bengfort@posteo.de>
Date
2022-07-21 05:47
rm example nginx config

Diffstat

M Makefile 1 -
D data/git.nginx 15 ---------------

2 files changed, 0 insertions, 16 deletions


diff --git a/Makefile b/Makefile

@@ -15,7 +15,6 @@ src/stagit.o: src/stagit.c src/strlcpy.c src/config.h
   15    15 install: stagit
   16    16 	install -D -m 755 stagit "${DESTDIR}/usr/bin/stagit"
   17    17 	install -D -m 644 data/style.css "${DESTDIR}/var/www/git/style.css"
   18    -1 	install -D -m 644 data/git.nginx "${DESTDIR}/etc/nginx/sites-available/git"
   19    18 	install -D -m 644 README.md "${DESTDIR}/usr/share/doc/stagit/README.md"
   20    19 
   21    20 	install -D -m 755 gitolite/shell.py "${DESTDIR}/usr/lib/stagit/shell"

diff --git a/data/git.nginx b/data/git.nginx

@@ -1,15 +0,0 @@
    1    -1 server {
    2    -1 	server_name _;
    3    -1 
    4    -1 	listen [::]:80;
    5    -1 	listen 80;
    6    -1 
    7    -1 	root /var/www/git;
    8    -1 
    9    -1 	location ~ /blob/ {
   10    -1 		default_type text/plain;
   11    -1 		types {
   12    -1 			html text/plain;
   13    -1 		}
   14    -1 	}
   15    -1 }