Kawula
Hello, this should be caused by a conflict
Currently, you can only add one of these files or you can manually change domain.com to your site domain name
/www/server/panel/vhost/nginx/dir_auth/domain.com/
Add the following line before the} sign (second to last line) : Then restart nginx
proxy_pass http://localhost:3000;
proxy_set_header Host $host;
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;
add_header X-Cache $upstream_cache_status;
#Set Nginx Cache
set $static_fileSQWR2xjs 0;
if ( $uri ~* "\.(gif|png|jpg|css|js|woff|woff2)$" )
{
set $static_fileSQWR2xjs 1;
expires 1m;
}
if ( $static_fileSQWR2xjs = 0 )
{
add_header Cache-Control no-cache;
}
Currently, ip address restriction is not supported. Or you can refer to the nginx official documentation Settings