Good afternoon I'm migrating an Apache server to Nginx and I have a project with some rules in .htaccess that I do not know how to convert to Nginx.
they are:
RewriteEngine On
RewriteCond %{HTTP_HOST} !^www.
RewriteCond %{HTTPS}s ^on(s)|
RewriteRule .* http%1://www.%{HTTP_HOST}%{REQUEST_URI} [R=301,L]
RewriteRule ^(.*)/*sitemap.xml$ app.php?path=sitemap.xml [L]
RewriteCond %{REQUEST_URI} .(jpg|jpeg|png|gif)
RewriteCond %{HTTPS}s ^on(s)|
RewriteRule ^imagem/([/a-zA-Z0-9._-]+)$ http%1://outrodominio.com.br/up$
RewriteCond %{REQUEST_URI} !.(jpg|jpeg|png|gif|css|js|zip|log|eot|ttf|woff|svg$
RewriteRule ^(.*)$ app.php?path=$1 [QSA,L]
I need help creating these rules in Nginx