我在apahce2的sites-enabled
目录中定义了两个虚拟主机
<VirtualHost *:80>
# The ServerName directive sets the request scheme, hostname and port that
# the server uses to identify itself. This is used when creating
# redirection URLs. In the context of virtual hosts, the ServerName
# specifies what hostname must appear in the request's Host: header to
# match this virtual host. For the default virtual host (this file) this
# value is not decisive as it is used as a last resort host regardless.
# However, you must set it for any further virtual host explicitly.
#ServerName www.example.com
ServerAdmin webmaster@sub.domain.in
ServerName sub.domain.in
ServerAlias www.sub.domain
DocumentRoot /var/www/html/sub/public_html
# Available loglevels: trace8, ..., trace1, debug, info, notice, warn,
# error, crit, alert, emerg.
# It is also possible to configure the loglevel for particular
# modules, e.g.
#LogLevel info ssl:warn
ErrorLog ${APACHE_LOG_DIR}/error.log
CustomLog ${APACHE_LOG_DIR}/access.log combined
# For most configuration files from conf-available/, which are
# enabled or disabled at a global level, it is possible to
# include a line for only one particular virtual host. For example the
# following line enables the CGI configuration for this host only
# after it has been globally disabled with "a2disconf".
#Include conf-available/serve-cgi-bin.conf
</VirtualHost>
# vim: syntax=apache ts=4 sw=4 sts=4 sr noet
<VirtualHost *:443>
ServerAdmin webmaster@sub.domain.in
ServerName sub.domain.in
ServerAlias www.sub.domain
DocumentRoot /var/www/html/sub/public_html
ErrorLog ${APACHE_LOG_DIR}/error.log
CustomLog ${APACHE_LOG_DIR}/access.log combined
SSLEngine on
SSLCertificateFile /home/ubuntu/sub.crt
SSLCertificateKeyFile /home/ubuntu/sub.key
</VirtualHost>
此配置对所有子域都适用,但是存在一个问题,我无法通过访问http://ip/phpmyadmin
来访问phpmyadmin
我应该更改什么配置以使phpmyadmin可以通过Web服务器访问。
答案 0 :(得分:-1)
要在apache2中启用虚拟主机时访问phpmyadmin,您只需为phpmyadmin创建另一个子域
sites-available
文件中phpmyadmin.conf
下的以下配置
<VirtualHost *:80>
ServerAdmin adminn@example.local
ServerName phpmyadmin.example.local
DocumentRoot /usr/share/phpmyadmin
<Directory />
Options FollowSymLinks
AllowOverride None
</Directory>
LogLevel notice
CustomLog /var/log/apache2/access.log combined
ErrorLog /var/log/apache2/error.log
ServerSignature On
</VirtualHost>
在此之后
sudo a2ensite phpmyadmin
sudo service apache2 reload
现在访问子域phpmyadmin.mydomain.com,它应该就在其中
注意:如果您使用的是ssl,还必须在端口443上使用同一文件中的ssl config定义一个虚拟主机