Categories
Nginx

NGINX Configuration BLOCK URLS

location ~* ^/log(\/)?$ { 
    return 404; 
}
 
location ~* ^/swagger(.*)$ { 
    return 404; 
}

Leave a Reply