1 | lua_package_path "/usr/local/lib/lua/5.1/?.lua;/srv/resty-gitweb/?.lua;;"; |
2 | lua_package_cpath "/usr/local/lib/lua/5.1/?.so;;"; |
3 |
|
4 | init_by_lua_file /srv/resty-gitweb/init.lua; |
5 |
|
6 | server { |
7 | listen 443 ssl http2; |
8 | listen [::]:443 ssl http2; |
9 | server_name git.joshstock.in; |
10 | rewrite ^/(.*)/(\?.*)?$ /$1$2 permanent; |
11 | error_page 404 /error-404.html; location = /error-404.html { |
12 | root /var/www/html; |
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/html; |
20 | } |
21 | location = /static/favicon.png { |
22 | root /var/www/html; |
23 | } |
24 | location ~ ^/([^\/]*)\.git { |
25 | fastcgi_intercept_errors on; |
26 | fastcgi_pass unix:/var/run/fcgiwrap.socket; |
27 | include fastcgi_params; |
28 | fastcgi_param SCRIPT_FILENAME /usr/lib/git-core/git-http-backend; |
29 | fastcgi_param GIT_HTTP_EXPORT_ALL ""; |
30 | fastcgi_param GIT_PROJECT_ROOT /home/git; |
31 | fastcgi_param PATH_INFO $uri; |
32 | } |
33 | } |
34 |
|