Поддомен указывает на папку в Ubuntu и разрешает доступ к папке - PullRequest
0 голосов
/ 04 октября 2018

ниже - моя структура папок:

-media
    -js
    -css
-customer
    -index.html
-web-service
-index.html

я перенаправляю customer.example.com в папку /var/www/html/customer, используя следующий код

<VirtualHost _default_:443>
        ServerName customer.example.com
        ServerAlias customer.example.com
        ServerAdmin webmaster@localhost
        DocumentRoot /var/www/html/customer/

        SSLEngine on
        SSLCertificateFile /etc/letsencrypt/live/example.com/cert.pem
        SSLCertificateKeyFile /etc/letsencrypt/live/example.com/privkey.pem
        SSLCertificateChainFile /etc/letsencrypt/live/example.com/chain.pem

         <Directory "/var/www/html">
            AllowOverride All
        </Directory>

        ErrorLog ${APACHE_LOG_DIR}/error.log
        CustomLog ${APACHE_LOG_DIR}/access.log combined


</VirtualHost>

, когда пытаюсь получить доступ к js and css of media folderиз customer/index.html он возвращает файл customer/index.html для всех запросов js и css.

Я также хочу получить доступ к папке веб-службы, так как мои API принадлежат этой папке.

isЕсть ли решение для этого?

...