Merge pull request #23 from mabasic/patch-1

Instructs Nginx to listen on both IPv6 and IPv4
This commit is contained in:
Uku Taht
2020-12-07 11:25:45 +02:00
committed by GitHub

View File

@ -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;