Fix nginx configuration to avoid ipv6 resolutions errors

This commit is contained in:
Antony PERIGAULT 2018-03-15 17:41:40 +01:00
parent 597874b849
commit 8cf1c1a180

View File

@ -26,11 +26,11 @@ http {
#gzip on;
upstream uwsgi {
server localhost:8050;
server 127.0.0.1:8050;
}
upstream daphne {
server localhost:8051;
server 127.0.0.1:8051;
}
server {