Allard Berends
Allard Berends
Correction: in the text above I said IPv4 twice. The second one must be IPv6.
First of all the nginx.conf ``` # cat /etc/nginx/nginx.conf #user awx; worker_processes 1; error_log /var/log/nginx/error_log warn; pid /var/run/nginx.pid; events { worker_connections 1024; } http { include /etc/nginx/mime.types; default_type application/octet-stream; log_format...
The curl from the localhost to the loopback interface: ``` # curl http://127.0.0.1 .. remainder of the AWX (Tower) page skipped .. ```
And the same thing for IPv6: ``` # curl -g -6 http://[::1] curl: (7) Failed connect to ::1:80; Connection refused ```