+++ /dev/null
-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;
- }
-
-}
--- /dev/null
+# 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";