Rietveld Code Review Tool
Help | Bug tracker | Discussion group | Source code

Unified Diff: modules/statsmaster/files/site.conf

Issue 6293281981857792: Issue 239 - Move AWStats processing to the stats server (Closed)
Patch Set: Created April 23, 2014, 1:14 p.m.
Use n/p to move between diff chunks; N/P to move between comments.
Jump to:
View side-by-side diff with in-line comments
Download patch
Index: modules/statsmaster/files/site.conf
===================================================================
--- a/modules/statsmaster/files/site.conf
+++ b/modules/statsmaster/files/site.conf
@@ -25,8 +25,28 @@ location /notification
}
location /raw
{
alias /var/www/statsdata;
auth_basic "Stats Restricted Access";
auth_basic_user_file /var/www/htpasswd;
}
+
+location /web
+{
+ alias /var/www/awstats;
+ auth_basic "Stats Restricted Access";
+ auth_basic_user_file /var/www/htpasswd;
+
+ autoindex on; # for the archives
Felix Dahlke 2014/04/25 04:37:08 Micro nit: Single space before #?
+}
+
+location /web/easylist.adblockplus.org
+{
+ # No authentication here
+ alias /var/www/awstats/easylist.adblockplus.org;
+}
+
+location /web/icons
+{
+ alias /usr/share/awstats/icon;
+}

Powered by Google App Engine
This is Rietveld