I am moving from Apache to NGINX and I need to convert the following virtual server configuration to NGINX.
<VirtualHost *:80> DocumentRoot /var/www/myproject/web ServerName myproject.dev ServerAlias myproject.dev <Directory /var/www/myproject/web> AllowOverride All Order allow,deny Allow from All </Directory> </VirtualHost>
What will be the "exact translation" of this to NGINX?
source share