Skip to content

Commit

Permalink
Merge pull request #23 from mabasic/patch-1
Browse files Browse the repository at this point in the history
Instructs Nginx to listen on both IPv6 and IPv4
  • Loading branch information
ukutaht committed Dec 7, 2020
2 parents 564e059 + 9827f5a commit 11f3867
Showing 1 changed file with 3 additions and 0 deletions.
3 changes: 3 additions & 0 deletions reverse-proxy/nginx/plausible
Original file line number Diff line number Diff line change
@@ -1,6 +1,9 @@
server {
# replace example.com with your domain name
server_name example.com;

listen 80;
listen [::]:80;

location / {
proxy_pass http://127.0.0.1:8000;
Expand Down

0 comments on commit 11f3867

Please sign in to comment.