Difference between revisions of "HTTP"

From Things and Stuff Wiki
Jump to navigation Jump to search
Line 111: Line 111:
  
 
== Analytics ==
 
== Analytics ==
 +
=== Piwik ===
 
* [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/ 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/latest.zip
** [http://piwik.org/docs/user-guide/ User Guide]
+
** [http://dev.piwik.org/trac/ Trac]
** [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]
+
* [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]
  
 
=== Google ===
 
=== Google ===
 
* [http://www.google.com/analytics/ Google Analytics]
 
* [http://www.google.com/analytics/ Google Analytics]

Revision as of 00:03, 24 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

Control panels

Apache

Other

Performance

Web server logs

Combined Log Format

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

old skool;

Apache

Nginx

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

GoAccess

  • GoAccess is an open source real-time web log analyzer and interactive viewer that runs in a terminal in *nix systems. It provides fast and valuable HTTP statistics for system administrators that require a visual server report on the fly.

Analytics

Piwik

  • 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.

Google