mirror of
https://github.com/ansible/awx.git
synced 2026-05-12 11:57:37 -02:30
Fix nginx configuration to avoid ipv6 resolutions errors
This commit is contained in:
@@ -26,11 +26,11 @@ http {
|
|||||||
#gzip on;
|
#gzip on;
|
||||||
|
|
||||||
upstream uwsgi {
|
upstream uwsgi {
|
||||||
server localhost:8050;
|
server 127.0.0.1:8050;
|
||||||
}
|
}
|
||||||
|
|
||||||
upstream daphne {
|
upstream daphne {
|
||||||
server localhost:8051;
|
server 127.0.0.1:8051;
|
||||||
}
|
}
|
||||||
|
|
||||||
server {
|
server {
|
||||||
|
|||||||
Reference in New Issue
Block a user