동일한 서버에서 2개의 웹 애플리케이션을 호스팅하는 방법

동일한 서버에서 2개의 웹 애플리케이션을 호스팅하는 방법

저는 현재 EVE Online이라는 게임에 대해 2개의 타사 응용 프로그램을 구성하고 있습니다. 하나는 Pathfinder이고 다른 하나는 회사 관리 응용 프로그램입니다.

예를 들어 Pathfinder에 액세스하려는 경우 내 URL은 이고 mydomain.com/pathfinder, 다른 응용 프로그램에 액세스하려는 경우 내 URL은 입니다 mydomain.com/otherapp.

Pathfinder는 다른 응용 프로그램 도 있어야 하는 DocumentRoot폴더( )에 있습니다 ( )./var/www/pathfinderDocumentRoot/var/www/otherapp

    <VirtualHost *:80>
# The ServerName directive sets the request scheme, hostname and port that
# the server uses to identify itself. This is used when creating
# redirection URLs. In the context of virtual hosts, the ServerName
# specifies what hostname must appear in the request's Host: header to
# match this virtual host. For the default virtual host (this file) this
# value is not decisive as it is used as a last resort host regardless.
# However, you must set it for any further virtual host explicitly.
ServerName mydomain.com

ServerAdmin [email protected]
DocumentRoot /var/www/pathfinder

# Available loglevels: trace8, ..., trace1, debug, info, notice, warn,
# error, crit, alert, emerg.
# It is also possible to configure the loglevel for particular
# modules, e.g.
#LogLevel info ssl:warn

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

# For most configuration files from conf-available/, which are
# enabled or disabled at a global level, it is possible to
# include a line for only one particular virtual host. For example the
# following line enables the CGI configuration for this host only
# after it has been globally disabled with "a2disconf".
#Include conf-available/serve-cgi-bin.conf
RewriteEngine on
RewriteCond %{SERVER_NAME} =mydomain.com
RewriteRule ^ https://%{SERVER_NAME}%{REQUEST_URI} [END,QSA,R=permanent]
</VirtualHost>

# vim: syntax=apache ts=4 sw=4 sts=4 sr noet

답변1

두 개를 만듭니다 VirtualHosts(별도의 파일에 저장하는 것이 좋음).

<VirtualHost *:80>
    ServerName pathfinder.dev
    ServerAlias www.pathfinder.dev

    DocumentRoot /var/www/pathfinder
    <Directory /var/www/pathfinder>
        AllowOverride All
        Order Allow,Deny
        Allow from All
        #... 
    </Directory>
    #...
</VirtualHost>

<VirtualHost *:80>
    ServerName otherapp.dev
    ServerAlias www.otherapp.dev

    DocumentRoot /var/www/otherapp
    <Directory /var/www/otherapp>
        AllowOverride All
        Order Allow,Deny
        Allow from All
        #...
    </Directory>
    #...
</VirtualHost>

호스트 파일을 편집 /etc/hosts하고 다음 줄을 추가합니다.

127.0.0.1   pathfinder.dev
127.0.0.1   otherapp.dev

변경 사항을 저장하고 Apache 서버를 다시 시작하십시오. 브라우저를 열고 첫 번째 프로젝트 http://pathfinder.dev와 두 번째 애플리케이션 으로 이동하세요.http://otherapp.dev

답변2

Alias ​​​​/pathfinder /var/www/pathfinder 및 Alias ​​​​/otherapp /var/www/otherapp를 사용하셨습니다. 가상 호스트를 사용할 필요가 없습니다. yourdomain.com/pathfinder 및 yourdomain.com/otherapp을 찾아볼 수 있습니다. 동일한 서버에서 가상 호스트와 별칭을 사용할 수 없습니다.

답변3

두 개의 서로 다른 가상 호스트를 구성해야 할 가능성이 높으며, 하위 도메인을 사용하여 분리하거나 자신에게 가장 적합한 다른 포트에서 수신 대기할 수 있습니다.

다음과 같은 일부 제어판을 사용할 수도 있습니다.이것, 구성 파일에 대해 완전히 확신하지 못하는 경우 Apache, 도메인 및 하위 도메인을 관리할 수 있습니다.

인사.

관련 정보