Eu tenho um problema para gerenciar dois hosts virtuais no Ubuntu apache2.
O seguinte é a estrutura no meu / var / www
Meu stroyboard é assim: Eu quero criar um portal da web que tenha um serviço owncloud. O IP do portal é: http://192.168.5.222
. E quero dar ao owncloud um endereço no https://192.168.5.222
.
Então eu criei dois arquivos .conf em /etc/apache2/sites-available
portal.conf
< * VirtualHost *: 80 >
ServerAdmin [email protected]
ServerName 192.168.5.222
ServerAlias tresnamuda.local
DocumentRoot /var/www/portal
ErrorLog ${APACHE_LOG_DIR}/error.log
CustomLog ${APACHE_LOG_DIR}/access.log combined
< * / VirtualHost >
Owncloud.conf
< * VirtualHost *: 443 >
#### Configuração para SSL ##### SSLEngine on SSLCertificateFile /etc/apache2/ssl/owncloud.pem SSLCertificateKeyFile /etc/apache2/ssl/owncloud.key #### End of SSL Configuration ####
DocumentRoot / var / www / owncloud /
< Diretório / var / www / owncloud > Opções de índices FollowSymLinks AllowOverride All Exigir tudo concedido < / Diretório > < * / VirtualHost >
Você sabe, eu aprendo a instalar o owncloud a partir dessas referências: Noobslab . Em http: Sucesso . Mas no https: owncloud me dá um erro como este:
Internal Server Error
The server encountered an internal error and was unable to complete your request.
Este é o meu apache2.conf:
# Global configuration
Mutex file:${APACHE_LOCK_DIR} default
PidFile ${APACHE_PID_FILE}
Timeout 300
KeepAlive On
MaxKeepAliveRequests 100
KeepAliveTimeout 5
User ${APACHE_RUN_USER}
Group ${APACHE_RUN_GROUP}
HostnameLookups Off
ErrorLog ${APACHE_LOG_DIR}/error.log
LogLevel warn
IncludeOptional mods-enabled/*.load
IncludeOptional mods-enabled/*.conf
Include ports.conf
<Directory />
Options FollowSymLinks
AllowOverride None
Require all denied
</Directory>
<Directory /usr/share>
AllowOverride None
Require all granted
</Directory>
<Directory /var/www/>
Options Indexes FollowSymLinks
AllowOverride All
Require all granted
Allow from all
</Directory>
<Directory /var/www/portal>
Options Indexes FollowSymLinks
AllowOverride All
Require all granted
</Directory>
AccessFileName .htaccess
<FilesMatch "^\.ht">
Require all denied
</FilesMatch>
LogFormat "%v:%p %h %l %u %t \"%r\" %>s %O \"%{Referer}i\" \"%{User-Agent}i\"" vhost_combined
LogFormat "%h %l %u %t \"%r\" %>s %O \"%{Referer}i\" \"%{User-Agent}i\"" combined
LogFormat "%h %l %u %t \"%r\" %>s %O" common
LogFormat "%{Referer}i -> %U" referer
LogFormat "%{User-agent}i" agent
IncludeOptional conf-enabled/*.conf
IncludeOptional sites-enabled/*.conf
Qualquer ajuda ou sugestão que seja tão apreciada.