From: Chocobozzz Date: Wed, 7 Aug 2019 13:13:01 +0000 (+0200) Subject: Fix nginx template on dual stack server X-Git-Tag: v1.4.0-rc.1~16 X-Git-Url: https://git.immae.eu/?a=commitdiff_plain;h=fd2ddcae8ff4eb10bf7168ac3c8801f06b37627f;p=github%2FChocobozzz%2FPeerTube.git Fix nginx template on dual stack server See https://framacolibri.org/t/listen-to-unix-socket-instead-of-localhost-9000/5348 --- diff --git a/support/nginx/peertube b/support/nginx/peertube index aca985785..225241bac 100644 --- a/support/nginx/peertube +++ b/support/nginx/peertube @@ -91,7 +91,7 @@ server { } location / { - proxy_pass http://localhost:9000; + proxy_pass http://127.0.0.1:9000; proxy_set_header X-Real-IP $remote_addr; proxy_set_header Host $host; proxy_set_header X-Forwarded-For $proxy_add_x_forwarded_for; @@ -156,14 +156,14 @@ server { proxy_http_version 1.1; proxy_set_header X-Forwarded-For $proxy_add_x_forwarded_for; proxy_set_header Host $host; - proxy_pass http://localhost:9000; + proxy_pass http://127.0.0.1:9000; } location /socket.io { proxy_set_header X-Forwarded-For $proxy_add_x_forwarded_for; proxy_set_header Host $host; - proxy_pass http://localhost:9000; + proxy_pass http://127.0.0.1:9000; # enable WebSockets proxy_http_version 1.1;