Я хочу настроить среду разработки.
Я хочу один виртуальный хост для моего API и один для моего сайта.
Конфигурация в C: \ wamp64 \ bin \ apache \ apache2.4.41 \ conf \ extra \ httpd-vhosts.conf:
# Virtual Hosts
#
Listen 1234
Listen 1111
Listen 2222
<VirtualHost *:1234>
ServerName localhost
ServerAlias localhost
DocumentRoot "${INSTALL_DIR}/www"
<Directory "${INSTALL_DIR}/www/">
Options +Indexes +Includes +FollowSymLinks +MultiViews
AllowOverride All
Require local
</Directory>
</VirtualHost>
<VirtualHost *:1111>
ServerName api
DocumentRoot "D:/Projects/FdbAppsV2/api"
</VirtualHost>
<VirtualHost *:2222>
ServerName fdbapps
DocumentRoot "D:/Projects/FdbAppsV2/FrontEnd"
</VirtualHost>