mirror of
https://github.com/plausible/hosting.git
synced 2024-12-22 12:03:18 -06:00
Merge pull request #23 from mabasic/patch-1
Instructs Nginx to listen on both IPv6 and IPv4
This commit is contained in:
commit
11f3867b70
@ -1,6 +1,9 @@
|
|||||||
server {
|
server {
|
||||||
# replace example.com with your domain name
|
# replace example.com with your domain name
|
||||||
server_name example.com;
|
server_name example.com;
|
||||||
|
|
||||||
|
listen 80;
|
||||||
|
listen [::]:80;
|
||||||
|
|
||||||
location / {
|
location / {
|
||||||
proxy_pass http://127.0.0.1:8000;
|
proxy_pass http://127.0.0.1:8000;
|
||||||
|
Loading…
Reference in New Issue
Block a user