2

У меня проблема с управлением двумя виртуальными хостами на apache2 Ubuntu.

Ниже приведена структура на моем /var /www

  1. OwnCloud
  2. Портал

Мой stroyboard выглядит следующим образом: я хочу создать веб-портал, имеющий службу owncloud. IP портала: http://192.168.5.222 . И я хочу дать свой собственный облачный адрес на https://192.168.5.222 .

Поэтому я создал два .conf в /etc/apache2/sites-available

  1. portal.conf

    <* VirtualHost *:80>

    ServerAdmin itjkt@tresnamuda.co.id
    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>

  2. Owncloud.conf

    <* VirtualHost *:443>

    #### Конфигурация для SSL ##### SSLEngine на SSLCertificateFile /etc/apache2/ssl/owncloud.pem SSLCertificateKeyFile /etc/apache2/ssl/owncloud.key #### Конец конфигурации SSL ####

    DocumentRoot /var /www /owncloud /

    < Directory /var /www /owncloud> Опции Индексы FollowSymLinks AllowOverride All Требуется все предоставлено < /Directory> <* /VirtualHost>

Вы знаете, я учусь устанавливать owncloud по этой ссылке: Noobslab . На http: успех . Но на https: owncloud выдает мне такую ошибку:

Internal Server Error

The server encountered an internal error and was unable to complete your request.

Это мой 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

Любая помощь или предложение так ценится.

0