]> Entropealabs - home.entropealabs.com.git/commitdiff
adds gitweb conf, delete old nginx conf main
authorChristopher Coté <chris@entropealabs.com>
Fri, 7 Mar 2025 13:29:50 +0000 (08:29 -0500)
committerChristopher Coté <chris@entropealabs.com>
Fri, 7 Mar 2025 13:29:50 +0000 (08:29 -0500)
conf.d/default.conf [deleted file]
gitweb.conf [new file with mode: 0644]

diff --git a/conf.d/default.conf b/conf.d/default.conf
deleted file mode 100644 (file)
index bae6fbb..0000000
+++ /dev/null
@@ -1,25 +0,0 @@
-server {
-    listen       80;
-    server_name  home.entropealabs.com;
-
-
-    location / {
-        root   /usr/share/nginx/html;
-        index  index.html index.htm;
-    }
-
-
-    error_page   500 502 503 504  /50x.html;
-    location = /50x.html {
-        root   /usr/share/nginx/html;
-    }
-}
-
-server {
-    listen       80;
-    server_name  git.entropealabs.com;
-    location / {
-        proxy_pass http://192.168.0.128:8282;
-    }
-
-}
diff --git a/gitweb.conf b/gitweb.conf
new file mode 100644 (file)
index 0000000..9db0575
--- /dev/null
@@ -0,0 +1,9 @@
+# The directories where your projects are. Must not end with a slash.
+our $site_name = "Entropealabs";
+our @stylesheets = "theme/gitweb.css";
+our $logo = "theme/git-logo.png";
+our $favicon = "theme/git-favicon.png";
+our $projectroot = "/srv/git"; 
+
+# Base URLs for links displayed in the web interface.
+our @git_base_url_list = "http://localhost";