Index

joshstock.in / aec2931

Source for serving and static templating/compiling of https://joshstock.in.

Latest Commit

{#}TimeHashSubjectAuthor#(+)(-)GPG?
14914 Jul 2022 16:23e89b100Enable resty-gitweb on testJosh Stockin144G

Blob @ joshstock.in / nginx / test / servers / git.conf

text/plain977 bytesdownload raw
1lua_package_path "/usr/local/lib/lua/5.1/?.lua;/srv/resty-gitweb/?.lua;;";
2lua_package_cpath "/usr/local/lib/lua/5.1/?.so;;";
3
4init_by_lua_file /srv/resty-gitweb/init.lua;
5
6server {
7 listen 80;
8 listen [::]:80;
9 server_name git.localhost;
10 rewrite ^/(.*)/(\?.*)?$ /$1$2 permanent;
11 error_page 404 /error-404.html; location = /error-404.html {
12 root /var/www/josh;
13 }
14 location / {
15 default_type text/html;
16 content_by_lua_file /srv/resty-gitweb/app.lua;
17 }
18 location = /favicon.ico {
19 root /var/www/josh;
20 }
21 location = /static/favicon.png {
22 root /var/www/josh;
23 }
24 location ~ ^/([^\/]*)\.git {
25 fastcgi_pass unix:/var/run/fcgiwrap.socket;
26 include fastcgi_params;
27 fastcgi_param SCRIPT_FILENAME /usr/lib/git-core/git-http-backend;
28 fastcgi_param GIT_HTTP_EXPORT_ALL "";
29 fastcgi_param GIT_PROJECT_ROOT /home/josh/repos;
30 fastcgi_param PATH_INFO $uri;
31 }
32}
33