Estoy configurando un Apache, esta puesto para que todo lo que no este dentro de los subdominios que maneja te mande a la página principal de mi empresa.
subdominio-que-existe.dominio.com --> Me lleva el servicio
subdominio-que-no-existe.dominio.com -> Me lleva a www.dominio.com
Utilizo virtual hosts para hacer el forwarding a los servicios de la empresa, pero ahora algunos servicios los hemos necesitado sacar de internet entonces he comentado los virtual hosts y para mi sorpresa me encuentro que me da un error de Forbidden, en vez de redirigirme a www.dominio.com
Alguna idea de por qué puede ser?
httpd.confInclude conf/extra/httpd-ahssl.conf
SSLRandomSeed startup builtin
SSLRandomSeed connect builtin
</IfModule>
<IfModule http2_module>
ProtocolsHonorOrder On
Protocols h2 h2c http/1.1
</IfModule>
## Jira
#<VirtualHost *:80>
# ServerAdmin webmaster@localhost
# ServerName jira.domain.com
#
# Redirect permanent / https://jira.domain.com/
#</VirtualHost>
## Confluence
#<VirtualHost *:80>
# ServerAdmin webmaster@localhost
# ServerName confluence.domain.com
#
# Redirect permanent / https://confluence.domain.com
#</VirtualHost>
httpd-ahssl.conf# Confluence SSL
#<VirtualHost *:443>
# SSLEngine on
# SSLProxyEngine on
#
# SSLCertificateFile "${SRVROOT}XXX"
# SSLCertificateKeyFile "${SRVROOT}XXX"
# SSLCACertificateFile "${SRVROOT}XXX"
#
# ServerAdmin webmaster@localhost
# ServerName confluence.domain.com
#
# ProxyRequests Off
# ProxyPreserveHost On
# <Proxy *>
# Require all granted
# </Proxy>
# ProxyPass / http://IP:PORT/
# ProxyPassReverse / http://IP:PORT
#
# <Location />
# Require all granted
# </Location>
#
#</VirtualHost>
# JIRA SSL
#<VirtualHost *:443>
# SSLEngine on
# SSLProxyEngine on
#
# SSLCertificateFile "${SRVROOT}XXX"
# SSLCertificateKeyFile "${SRVROOT}XXX"
# SSLCACertificateFile "${SRVROOT}XXX"
#
# ServerAdmin webmaster@localhost
# ServerName jira.domain.com
#
# ProxyRequests Off
# ProxyPreserveHost On
# <Proxy *>
# Require all granted
# </Proxy>
# ProxyPass / http://IP:PORT
# ProxyPassReverse / http://IP:PORT
#</VirtualHost>