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

Unified Diff: modules/statsmaster/files/stats.adblockplus.org

Issue 11468051: Update stats processing (Closed)
Patch Set: Using PyPy for log processing Created Aug. 29, 2013, 8:07 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/stats.adblockplus.org
===================================================================
--- a/modules/statsmaster/files/stats.adblockplus.org
+++ b/modules/statsmaster/files/stats.adblockplus.org
@@ -22,26 +22,23 @@ server {
access_log /var/log/nginx/access_log_stats main;
keepalive_timeout 0;
root /var/www/stats;
location /static {
root /opt/sitescripts/sitescripts/stats;
}
- location /download
- {
+ location /download {
auth_basic "Stats Restricted Access";
auth_basic_user_file /var/www/htpasswd;
}
- location /update
- {
+ location /update {
auth_basic "Stats Restricted Access";
auth_basic_user_file /var/www/htpasswd;
}
- location /notification
- {
+ location /notification {
auth_basic "Stats Restricted Access";
auth_basic_user_file /var/www/htpasswd;
}
}

Powered by Google App Engine
This is Rietveld