Olá, eu configurei com sucesso meu servidor Redmine (Ubuntu 12.04LTS, Apache2, Passenger, Mysql usando o guia em link ). No entanto, encontrei um pequeno problema. Eu adoraria digitar o endereço IP interno do meu servidor na barra de endereços do navegador e visitar o site, mas devo digitar ip_address / redmine e não posso portfoward o roteador para isso. Atualmente, se eu usar meu website www.example.net ou ip_address no navegador, recebo a página padrão apache2 "it works" (index.html).
Estou incluindo meus arquivos de configuração, pois não encontrei outros exemplos usando a mesma configuração, apenas solicite mais arquivos de configuração se precisar deles. Além disso, se houver alguma coisa extra desnecessária nelas, por favor, diga-me para que eu possa removê-lo
este é o meu arquivo ports.conf:
NameVirtualHost *:80
Listen 80
<IfModule mod_ssl.c>
# If you add NameVirtualHost *:443 here, you will also have to change
# the VirtualHost statement in /etc/apache2/sites-available/default-ssl
# to <VirtualHost *:443>
# Server Name Indication for SSL named virtual hosts is currently not
# supported by MSIE on Windows XP.
Listen 443
</IfModule>
<IfModule mod_gnutls.c>
Listen 443
</IfModule>
este é o meu arquivo 000-default encontrado em / etc / apache2 / sites-enabled /
<VirtualHost *:80>
ServerAdmin webmaster@localhost
DocumentRoot /var/www
<Directory /var/www/redmine>
RailsBaseURI /redmine
PassengerResolveSymlinksInDocumentRoot on
</Directory>
<Directory />
Options FollowSymLinks
AllowOverride None
</Directory>
<Directory /var/www/>
Options Indexes FollowSymLinks MultiViews
AllowOverride None
Order allow,deny
allow from all
</Directory>
ScriptAlias /cgi-bin/ /usr/lib/cgi-bin/
<Directory "/usr/lib/cgi-bin">
AllowOverride None
Options +ExecCGI -MultiViews +SymLinksIfOwnerMatch
Order allow,deny
Allow from all
</Directory>
ErrorLog ${APACHE_LOG_DIR}/error.log
# Possible values include: debug, info, notice, warn, error, crit,
# alert, emerg.
LogLevel warn
CustomLog ${APACHE_LOG_DIR}/access.log combined
Alias /doc/ "/usr/share/doc/"
<Directory "/usr/share/doc/">
Options Indexes MultiViews FollowSymLinks
AllowOverride None
Order deny,allow
Deny from all
Allow from 127.0.0.0/255.0.0.0 ::1/128
</Directory>
por algum motivo, o httpd.conf está vazio