using 127.0.0.1 instead of localhost

This commit is contained in:
Devaev Maxim
2018-10-28 07:09:00 +03:00
parent ab342111d0
commit c65c710962
5 changed files with 8 additions and 8 deletions

View File

@@ -31,11 +31,11 @@ http {
uwsgi_temp_path /tmp/nginx.uwsgi_temp;
upstream kvmd {
server localhost:8081 fail_timeout=0s max_fails=0;
server 127.0.0.1:8081 fail_timeout=0s max_fails=0;
}
upstream ustreamer {
server localhost:8082 fail_timeout=0s max_fails=0;
server 127.0.0.1:8082 fail_timeout=0s max_fails=0;
}
#PROD server {