Difference between revisions of "HTTP"

From Things and Stuff Wiki
Jump to navigation Jump to search
Line 62: Line 62:
  
 
==== Logging and stats ====
 
==== Logging and stats ====
 +
See also [[Server#Monitoring_and_analytics]]
 +
 
  [http://linux.die.net/man/8/logrotate logrotate]
 
  [http://linux.die.net/man/8/logrotate logrotate]
  
 +
Combined Log Format
 +
LogFormat "%h %l %u %t \"%r\" %>s %b \"%{Referer}i\" \"%{User-agent}i\"" combined
 +
 +
apache;
 +
* http://httpd.apache.org/docs/1.3/logs.html
 +
 +
nginx config;
 +
* http://wiki.nginx.org/HttpLogModule
 
  error_log  /var/log/nginx/error.log;
 
  error_log  /var/log/nginx/error.log;
 
  access_log  /var/log/nginx/access.log;
 
  access_log  /var/log/nginx/access.log;
Line 69: Line 79:
 
* http://articles.slicehost.com/2010/8/27/reading-nginx-web-logs
 
* http://articles.slicehost.com/2010/8/27/reading-nginx-web-logs
 
* http://gadelkareem.com/2012/07/01/nginx-error-log-reader/
 
* http://gadelkareem.com/2012/07/01/nginx-error-log-reader/
 
* [http://piwik.org/ Piwik] is downloadable, Free/Libre (GPLv3 licensed) real time web analytics software. It provides you with detailed reports on your website visitors; the search engines and keywords they used, the language they speak, your popular pages, and much more.
 
** [http://piwik.org/docs/installation-optimization/ Installation & Optimization]
 
** [http://piwik.org/docs/user-guide/ User Guide]
 
** [http://piwik.org/log-analytics/ Log Analytics] - combined format logs (apache, nginx)
 
** [http://dev.piwik.org/trac/query?status=new&status=assigned&status=reopened&milestone=Third+Party+Piwik+Plugins&order=priority Plugins]
 
 
old skool;
 
* http://www.webalizer.org/
 
* http://awstats.sourceforge.net/
 
  
 
==== Control panels ====
 
==== Control panels ====

Revision as of 08:50, 22 July 2012


Basics

  • HTTPie is a CLI, cURL-like tool for humans

User and group

See also *nix#Users

Servers

Nginx

Site folder location can vary.

/var/www
  debian
/etc/nginx/html
  arch linux

Site setup

Create 'Server Block' (vhost) config file in

/etc/nginx/sites-available

and later ln -s them in

/etc/nginx/sites-enabled

Enable logging in vhost conf;

error_log /var/log/nginx-vhostnamehere.log error;

Tools

Logging and stats

See also Server#Monitoring_and_analytics

logrotate

Combined Log Format

LogFormat "%h %l %u %t \"%r\" %>s %b \"%{Referer}i\" \"%{User-agent}i\"" combined

apache;

nginx config;

error_log  /var/log/nginx/error.log;
access_log  /var/log/nginx/access.log;

Control panels

Apache

Other

Performance