Sign inSign up

jpco/piwik

By jpco

•Updated almost 8 years ago

A piwik container. built so I can have it on my raspberry too.

Image
0

10K+

jpco/piwik repository overview

⁠Piwik


Made because I needed a Piwik installation for my raspberry.

Took too long to build using the code base from the php7-fpm and piwik combined. So ended up using debian packages for just about everything.

⁠Using fpm on php7

FPM Port: 9000
Piwik files are extracted on first run to /var/www/html/piwik

Nginx configuration example:

server {
    listen 443;

    server_name         mydomain.com;
    index               index.php;

    root                /var/www/html/;
    
    location ~ ^/piwik/.*\.php$ {
        include         fastcgi.conf;
        fastcgi_pass    piwik-fpm:9000;
    }
}

Tag summary

Content type

Image

Digest

Size

121.8 MB

Last updated

over 8 years ago

docker pull jpco/piwik