<VirtualHost *:80>
ServerName www.site.domain # You need to change it to your own domain
ServerAlias site.domain # You need to change it to your own domain
DocumentRoot /my/path/to/yii2-start/frontend/web # You need to change it to your own path
<Directory /my/path/to/yii2-start/frontend/web> # You need to change it to your own path
AllowOverride All
</Directory>
</VirtualHost>
<VirtualHost *:80>
ServerName admin.site.domain # You need to change it to your own domain
ServerAlias admin.site.domain # You need to change it to your own domain
DocumentRoot /my/path/to/yii2-start/backend/web # You need to change it to your own path
<Directory /my/path/to/yii2-start/backend/web> # You need to change it to your own path
AllowOverride All
</Directory>
</VirtualHost>
<VirtualHost *:80>
ServerName www.yii2-start.domain # You need to change it to your own domain
ServerAlias yii2-start.domain # You need to change it to your own domain
DocumentRoot /my/path/to/yii2-start # You need to change it to your own path
<Directory /my/path/to/yii2-start> # You need to change it to your own path
AllowOverride All
</Directory>
</VirtualHost>