matheusssilva
(usa Fedora)
Enviado em 02/08/2014 - 16:36h
Consegui algum avanço. Já consigo acessar o servidor http, criei um test.php:
<?php
phpinfo();
Funcionando perfeitamente, faltava adicionar o serviço na lista de serviços liberados pelo firewall:
firewall-cmd --permanent --add-service=http
Mas agora não consigo acessar o phpPgAdmin. Os arquivos dele estão em: /usr/share/phpPgAdmin/ a pasta onde deve ficar os arquivos de sites do apache é em /var/www/html, criei um link simbólico para o diretório onde estam os arquivos do phpPgAdmin: sudo ln -s /usr/share/phpPgAdmin/ phpPgAdmin
Quando tento acessar pelo navegador (ip-do-server/phpPgAdmin) recebo:
Forbidden
You don't have permission to access /phpPgAdmin on this server
o arquivo phpPgAdmin.conf está assim:
#
# This configuration file maps the phpPgAdmin directory into the URL space.
# By default this application is only accessible from the local host.
#
Alias /phpPgAdmin /usr/share/phpPgAdmin
<Location /phpPgAdmin>
<IfModule mod_authz_core.c>
# Apache 2.4
Require local
#Require host example.com
</IfModule>
<IfModule !mod_authz_core.c>
# Apache 2.2
Order deny,allow
#Deny from all
Allow from all
#Allow from 127.0.0.1
#Allow from ::1
# Allow from .example.com
</IfModule>
</Location>