When I try to enter the url (blog.genki.site) it automatically redirects to localhost
ERR_CONNECTION_REFUSED
Reverse proxy config:
#PROXY-START/
location ^~ /
{
proxy_pass http://localhost:2368;
proxy_set_header Host localhost;
proxy_set_header X-Real-IP $remote_addr;
proxy_set_header X-Forwarded-For $proxy_add_x_forwarded_for;
proxy_set_header REMOTE-HOST $remote_addr;
#Persistent connection related configuration
add_header X-Cache $upstream_cache_status;
#Set Nginx Cache
set $static_file8waSVchP 0;
if ( $uri ~* "\.(gif|png|jpg|css|js|woff|woff2)$" )
{
set $static_file8waSVchP 1;
expires 12h;
}
if ( $static_file8waSVchP = 0 )
{
add_header Cache-Control no-cache;
}
}
#PROXY-END/
This error is only in Chrome, and Opera browsers. In Edge, Brave the url It is accessible