Como hospedar 2 webapps no mesmo servidor

0

Atualmente, estou configurando dois aplicativos de terceiros para um jogo chamado EVE Online, um deles é o Pathfinder e o outro é um aplicativo de gerenciamento corporativo.

por exemplo, se eu quiser acessar o Pathfinder, meu URL seria mydomain.com/pathfinder , mas se quisesse acessar o outro aplicativo, meu URL seria mydomain.com/otherapp .

O Pathfinder está localizado na pasta DocumentRoot ( /var/www/pathfinder ) e o outro aplicativo deve estar na pasta DocumentRoot ( /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
    
por Hugo Pires 31.12.2016 / 23:07

3 respostas

3

Crie dois VirtualHosts (seria uma boa prática tê-los em arquivos separados)

<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>

Edite seu arquivo hosts /etc/hosts e adicione estas linhas:

127.0.0.1   pathfinder.dev
127.0.0.1   otherapp.dev

Salve as alterações e reinicie o servidor apache. Abra o navegador e vá para seu primeiro projeto http://pathfinder.dev e para seu segundo aplicativo http://otherapp.dev

    
por 31.12.2016 / 23:41
0

Você usou o Alias / pathfinder / var / www / pathfinder e o Alias / otherapp / var / www / otherapp. Você não precisa usar virtualhost.You pode procurar yourdomain.com/pathfinder e yourdomain.com/otherapp. Você não pode usar virtualhost e Alias no mesmo servidor.

    
por 01.01.2017 / 16:12
0

Você provavelmente precisará configurar dois hosts virtuais diferentes Você pode usar subdomínios para mantê-los separados ou ouvir nas diferentes portas conforme melhor lhe convier.

Você também pode gostar de usar algum painel de controle como este , para gerenciar o Apache, domínios e subdomínios se você não se sentir completamente seguro sobre a configuração arquivos.

Atenciosamente.

    
por 17.01.2017 / 10:19