Docker compose configs for Plausible analytics
Go to file
Mario Bašić 9827f5ace7
Instructs Nginx to listen on both IPv6 and IPv4
On a server which has IPv6 configured, `sudo certbot --nginx` would fail because certbot looks for both A and AAAA DNS records, and if AAAA (IPv6) is found it uses that. 

By adding:

```
listen 80;
listen [::]:80;
```

issue #22 is solved. Servers which have only IPv4 configured will continue working normally.
2020-12-03 16:53:43 +01:00
clickhouse Add clickhouse configuration to disable logging tables. 2020-11-14 14:20:13 +00:00
geoip Update docker-compose.geoip.yml 2020-10-24 03:07:38 +05:30
reverse-proxy Instructs Nginx to listen on both IPv6 and IPv4 2020-12-03 16:53:43 +01:00
README.md Initial commit 2020-10-01 11:13:13 +03:00
docker-compose.yml Merge pull request #13 from RealOrangeOne/master 2020-12-01 10:56:27 +02:00
plausible-conf.env Update plausible-conf.env - remove the brackets around env var values 2020-10-30 00:25:41 +02:00

README.md

Plausible Analytics setup examples

This repository acts as a a template to get up and running with Plausible Analytics.

How to use

Find instructions on how to run Plausible Analytics Self Hosted in our docs.

Contributing

We are always looking to expand on the options and setups provided here. Feel free to open an issue or PR if you feel something could be improved.