Não consigo abrir a pagina

Olá estou com problemas para concluir a instalação
após a conclusão

quando vou chamar o link aparece assim, eu tento de todas as maneiras e nada!

colocando o www

Arquivo de configuração

conseguem me ajudar? estou com muita dificuldade para instalar o passbolt já tem 1 mes e nada. já deve ser a decima maquina que faço

Hello @Fernandoribeiro07

Is it a local IP address? If it is, have you created a virtual host on your main machine?
If you are using Linux, you’ll need to edit /etc/hosts, add: 127.0.0.1 vmwpasscrp01.qsaude.com

If it’s not a local ip address, could you perform an healthcheck?
su -s /bin/bash -c "/var/www/passbolt/bin/cake passbolt healthcheck" www-data

1 Like

Hello @Fernandoribeiro07, I tried to resolve the DNS for the domain you are trying and it appears not registered. It has no IP associated, so when you try to access it, Chrome gives you the DNS_PROBE_FINISHED_NXDOMAIN error.
Here you can check it: DNS Propagation Checker - Global DNS Testing Tool
Do you have access to the DNS zone of the domain used to assign an IP?

1 Like

ele vai ser acesso local

continua a mesma coisa

tem alguma outra coisa que eu preciso verificar?

You have on the hosts file a domain .local and you have used in the installation a domain .com
You should use the same for both and ensure that your nginx is correctly configured to respond to your requests on that domain.
Are you trying to access from another device different from where Passbolt is installed? If it is different, you will need to set in the hosts file of the device, the domain and the IP that have to resolve

Resolvido!

nano /etc/apache2/sites-available/passbolt.conf
Adicione as seguintes linhas:

<VirtualHost *:80>

    ServerName passbolt.linuxbuz.com
    DocumentRoot /var/www/passbolt

    ErrorLog ${APACHE_LOG_DIR}/passbolt_error.log
    CustomLog ${APACHE_LOG_DIR}/passbolt_access.log combined


  <Directory /var/www/passbolt/>
            Options FollowSymLinks MultiViews
            AllowOverride All
            Require all granted
    </Directory>

adicionei essas linhas no conf e funcionou

1 Like