가상 호스트: Sites-available/myfilename.conf 구조

가상 호스트: Sites-available/myfilename.conf 구조

웹사이트가 있어요http://mydomain1아파치에서 로컬로 실행됩니다. 이제 난 하고 싶어http://mydomain2또한 접근 가능합니다.

myfilename.conf에 해당 태그를 추가했습니다.

  <VirtualHost *:80>
        ServerName mydomain2       
        ServerAdmin webmaster@localhost
        DocumentRoot /home/myname/Documents/Workspace/mydomain2/
        <Directory /home/myname/Documents/Workspace/mydomain2/>
                Options Indexes FollowSymLinks MultiViews
                AllowOverride None
                Order allow,deny
                allow from all
        </Directory>
        ErrorLog /var/log/apache2/error.log
        LogLevel warn
        CustomLog /var/log/apache2/access.log combined
        ServerSignature On
</VirtualHost>
<VirtualHost *:80>
        ServerName mydomain1       
        ServerAdmin webmaster@localhost
        DocumentRoot /home/myname/Documents/Workspace/mydomain1/
        <Directory /home/myname/Documents/Workspace/mydomain1/>
                Options Indexes FollowSymLinks MultiViews
                AllowOverride None
                Order allow,deny
                allow from all
        </Directory>
        ErrorLog /var/log/apache2/error.log
        LogLevel warn
        CustomLog /var/log/apache2/access.log combined
        ServerSignature On
</VirtualHost>

아파치를 다시 시작했습니다.

그래도 아무 것도 접근할 수 없어요http://mydomain2, 브라우저는 나를 www.mydomain2.com으로 리디렉션합니다.

관련 정보