我在同一个 VPS 中有多个 Web 项目,如下所示:
/var/www/html/
│---webapp1/
│ │---public/
│ │ │---index.php
│---webapp2/
│ │---public/
│ │ │---index.php
│---index.html
我想为下层webapp1
人民95.87.154.170:81
服务。webapp2
95.87.154.170:87
我曾尝试创建虚拟主机/etc/apache2/sites-available/webapp1.conf
:
<VirtualHost *:81>
ServerAdmin webmaster@localhost
DocumentRoot /var/www/html/webapp1
<Directory /var/www/html/webapp1>
Options Indexes FollowSymLinks MultiViews
AllowOverride All
Order allow,deny
allow from all
</Directory>
ErrorLog ${APACHE_LOG_DIR}/error.log
CustomLog ${APACHE_LOG_DIR}/access.log combined
</VirtualHost>
和/etc/apache2/sites-available/webapp2.conf
:
<VirtualHost *:87>
ServerAdmin webmaster@localhost
DocumentRoot /var/www/html/webapp2
<Directory /var/www/html/webapp2>
Options Indexes FollowSymLinks MultiViews
AllowOverride All
Order allow,deny
allow from all
</Directory>
ErrorLog ${APACHE_LOG_DIR}/error.log
CustomLog ${APACHE_LOG_DIR}/access.log combined
</VirtualHost>
但是我访问时它不起作用95.87.154.170:81
或95.87.154.170:87
显示ERR_EMPTY_RESPONSE
。两个站点都已启用。我的问题是我只有一个 IP,而且没有域名。有没有可能通过这种方式解决这个问题?