Can you help me? I'm trying to block all requests outside my domain, and allow the request if a specified parameter exists
location ~* \.(mp4|vtt|mp3|mkv|avi)$ {
if ( $http_referer !~* 'mywebsite.com' ) { # check http_referer
if ($arg_78up = '') { #check if parameter 78up is empty
return 404; # then redirect to 404 page
}
}
}
And I'm getting this error when nginx starts:
nginx: [emerg] "if" directive is not allowed here in /etc/nginx/sites-enabled/default:17
What should I do to fix this issue? Thank you!