Index: modules/hgweb/files/nginx.conf |
diff --git a/modules/hgweb/files/nginx.conf b/modules/hgweb/files/nginx.conf |
deleted file mode 100644 |
index 32dda2db39d7bacafd2d89aaa4fca7edb94cc221..0000000000000000000000000000000000000000 |
--- a/modules/hgweb/files/nginx.conf |
+++ /dev/null |
@@ -1,30 +0,0 @@ |
-location / |
-{ |
- root /home/hg/web; |
- rewrite ^/customization/(.*) /abpcustomization/$1 permanent; |
- fastcgi_pass unix:/var/run/hgweb.sock; |
- include fastcgi_params; |
- fastcgi_param SCRIPT_NAME ""; |
-} |
- |
-location ~ /[^/]+/(atom|rss)-log |
-{ |
- root /home/hg/web; |
- fastcgi_pass unix:/var/run/hgweb.sock; |
- include fastcgi_params; |
- fastcgi_param SCRIPT_NAME ""; |
- fastcgi_cache hgwebfeed; |
- fastcgi_cache_key $uri; |
- fastcgi_cache_lock on; |
- fastcgi_cache_valid 200 5m; |
-} |
- |
-location /static/ |
-{ |
- root /usr/share/mercurial/templates; |
-} |
- |
-location /robots.txt |
-{ |
- root /home/hg/web; |
-} |