여러 가상 호스트 생성(Linux Mint 18.2)

여러 가상 호스트 생성(Linux Mint 18.2)

내 가상 호스트의 구성은 다음과 같습니다(localhost 구성 파일) 파일(개발 중인 앱이 작동하려면 다음과 같아야 합니다. 왜 설정하지 않았는지 묻지 마세요.):

<VirtualHost *:80>
    ServerAdmin [email protected]
    ServerName localhost
    #ServerAlias www.wp.dev
    DocumentRoot /home/sasha/Documents/Scopic/STS/project/timesheetapprovalsgit/timesheet_ui/web

    <Directory /home/sasha/Documents/Scopic/STS/project/timesheetapprovalsgit/timesheet_ui>
        Options Indexes FollowSymLinks MultiViews
        AllowOverride all
        Order allow,deny
        allow from all
        require all granted
    </Directory>
</VirtualHost>

새 가상 호스트를 추가하려고 합니다(prst 구성 파일):

<VirtualHost *:80>
    ServerAdmin [email protected]
    ServerName prst.app
    ServerAlias www.prst.app
    DocumentRoot /home/sasha/Documents/Scopic/PerformanceReview/project/performance-review-status-tracking/public

    <Directory /home/sasha/Documents/Scopic/PerformanceReview/project/performance-review-status-tracking>
        Options Indexes FollowSymLinks MultiViews
        AllowOverride all
        Order allow,deny
        allow from all
        require all granted
    </Directory>
</VirtualHost>

내 호스트 파일:

127.0.0.1   localhost
127.0.0.1   www.prst.app

현재 내가 겪고 있는 가장 큰 문제는 내가 갈 때마다www.prst.app, localhost로 리디렉션됩니다. 내가 여기서 뭘 잘못하고 있는지 아는 사람 있나요?

답변1

귀하의 서버 이름은 다음과 같이 정의됩니다.

  ServerName prst.app

/etc/hosts따라서 www.prst.app 대신 prst.app에서 정의하세요.

127.0.0.1   prst.app

www.prst.app에 액세스하려면 다음 위치에서 새 가상 호스트와 새 레코드를 만드세요./etc/hosts

관련 정보