aboutsummaryrefslogtreecommitdiff
path: root/cgit/nginx.conf
diff options
context:
space:
mode:
authorAkshay Nair <phenax5@gmail.com>2026-07-04 10:53:44 +0530
committerAkshay Nair <phenax5@gmail.com>2026-07-04 10:53:44 +0530
commit6b505a48a23f77867dd9dc75a542ede6ce4ae955 (patch)
treee080c3c88f8c449681f45abaccf906230b2ead09 /cgit/nginx.conf
parent1f4c276914a7e5b03a31345d7bf5966e8aff9081 (diff)
downloadbacchus-remote-6b505a48a23f77867dd9dc75a542ede6ce4ae955.tar.gz
bacchus-remote-6b505a48a23f77867dd9dc75a542ede6ce4ae955.zip
Fix html transformation for about + syntax hl changes
Diffstat (limited to 'cgit/nginx.conf')
-rw-r--r--cgit/nginx.conf35
1 files changed, 35 insertions, 0 deletions
diff --git a/cgit/nginx.conf b/cgit/nginx.conf
new file mode 100644
index 0000000..a850744
--- /dev/null
+++ b/cgit/nginx.conf
@@ -0,0 +1,35 @@
+server {
+ listen 80;
+ server_name localhost;
+ root /usr/share/webapps/cgit;
+
+ location / {
+ try_files $uri @cgit;
+ }
+
+ location ~* ^.+(favicon.ico|robots.txt) {
+ root /usr/share/webapps/cgit;
+ expires 30d;
+ }
+
+ location @cgit {
+ include /etc/nginx/fastcgi_params;
+ fastcgi_param SCRIPT_FILENAME $document_root/cgit.cgi;
+ fastcgi_param PATH_INFO $uri;
+ fastcgi_param QUERY_STRING $args;
+ fastcgi_param HTTP_HOST $server_name;
+ fastcgi_pass unix:/var/run/fcgiwrap.sock;
+ }
+
+ error_page 404 /404.html;
+ error_page 401 /401.html;
+
+ error_page 500 502 503 504 /50x.html;
+ location = /50x.html {
+ root /usr/share/nginx/html;
+ }
+
+ location ~ /\.ht {
+ deny all;
+ }
+}