i am facing an issue with my vHost setup which I rly can't figure out how to fix
First my vhost config:
ServerName dnsmaster.*****.com:80
DocumentRoot /var/www/dns
Options FollowSymLinks
AllowOverride None
Options Indexes FollowSymLinks MultiViews
AllowOverride None
Order allow,deny
allow from all
ScriptAlias /cgi-bin/ /usr/lib/cgi-bin/
AllowOverride None
Options +ExecCGI -MultiViews +SymLinksIfOwnerMatch
Order allow,deny
Allow from all
ErrorLog ${APACHE_LOG_DIR}/error.log
# Possible values include: debug, info, notice, warn, error, crit,
# alert, emerg.
LogLevel warn
CustomLog ${APACHE_LOG_DIR}/access.log combined
ServerName chat.*****.com:443
DocumentRoot /var/www/chat
Options FollowSymLinks
AllowOverride None
Options Indexes FollowSymLinks MultiViews
AllowOverride None
Order allow,deny
allow from all
ScriptAlias /cgi-bin/ /usr/lib/cgi-bin/
AllowOverride None
Options +ExecCGI -MultiViews +SymLinksIfOwnerMatch
Order allow,deny
Allow from all
ErrorLog ${APACHE_LOG_DIR}/error.log
# Possible values include: debug, info, notice, warn, error, crit,
# alert, emerg.
LogLevel warn
CustomLog ${APACHE_LOG_DIR}/access.log combined
SSLEngine on
SSLCertificateFile /etc/apache2/ssl/apache.crt
SSLCertificateKeyFile /etc/apache2/ssl/apache.key
Both vHost are located in the default file (000-default)
- Also this is all there is in that file.
The first vHost works fine, and are also working with SSL/HTTPS
but when I try to go to second vHost, then it redirects me to the first one.
I've never faced this problem before, and have been setting a few vHosts up in the past.
But never 2 vHost where one is HTTPS and the other is HTTP
also this is the ports.conf: (default)
NameVirtualHost *:80
Listen 80
NameVirtualHost *:443
Listen 443
Listen 443
These answers are provided by our Community. If you find them useful, show some love by clicking the heart.
If you run into issues leave a comment, or add your own answer to help others.
×