Files directive

Hello all,
Today in my Apache I use this directive in my htaccess:


  ForceType application/x-httpd-php

There is any alternative to it in nginx?

Thank You.

Posted at Nginx Forum:

There is any alternative to it in nginx?

location = /test.php
{
types {
application/x-httpd-php php;
}
}