Eu tenho uma instância de nível gratuito ec2 executando Linux, servidor web Apache e aplicativo nodejs.
Configurei o grupo de segurança e funcionou bem até agora.
Mas agora não consigo acessar o servidor através de DOMAIN ou IP com porta (a porta foi aberta na regra de entrada).
Eu uso ssh para servidor remoto e log pm2, mas funciona bem. Então usei o lynx para navegar no localhost no comando e o aplicativo nodejs ainda está em execução nessa porta.
O log do Apache está ativo (em execução).
Antes de escrever este post, não consigo conectar o ssh ao servidor e a instância tem status StatusCheckFailed_Instance e reinicio a instância, então funcionou bem. Depois disso, cerca de 2 horas, acessei novamente e encontrei esse problema.
Alguém pode sugerir o que causa esse problema. Obrigado.
ATUALIZAR
Após reiniciar a instância ec2, ela funciona bem, mas após 10 minutos não é possível conectar-se ao servidor.
Vou ao log do apache em error_log.
[Sat Aug 22 17:28:34.698537 2020] [mpm_event:notice] [pid 5050:tid 140422190045376] AH00492: caught SIGWINCH, shutting down gracefully
[Sat Aug 22 17:32:05.288561 2020] [suexec:notice] [pid 3666:tid 140585338529984] AH01232: suEXEC mechanism enabled (wrapper: /usr/sbin/suexec)
[Sat Aug 22 17:32:05.314134 2020] [lbmethod_heartbeat:notice] [pid 3666:tid 140585338529984] AH02282: No slotmem from mod_heartmonitor
[Sat Aug 22 17:32:05.316840 2020] [mpm_event:notice] [pid 3666:tid 140585338529984] AH00489: Apache/2.4.43 () OpenSSL/1.0.2k-fips configured -- resuming normal operations
[Sat Aug 22 17:32:05.316866 2020] [core:notice] [pid 3666:tid 140585338529984] AH00094: Command line: '/usr/sbin/httpd -D FOREGROUND'
[Sat Aug 22 17:32:05.637067 2020] [proxy:error] [pid 3670:tid 140584547055360] (111)Connection refused: AH00957: HTTP: attempt to connect to 127.0.0.1:6969 (127.0.0.1) failed
[Sat Aug 22 17:32:05.637097 2020] [proxy_http:error] [pid 3670:tid 140584547055360] [client *****:****] AH01114: HTTP: failed to make connection to backend: 127.0.0.1, referer: https://***.herokuapp.com/profile
Às 17h32 eu acesso ip ok. Depois de 10 minutos, baixe. Mas no arquivo de log ocorre erro mesmo às 17:32.
Esta é minha configuração do Apache.
<VirtualHost *:80>
ServerAdmin **@gmail.com
DocumentRoot /var/www/html/hhs_api
ServerName api.***.xyz
Redirect / https://api.***.xyz/
<Directory "/var/www/html/hhs_api">
Order deny,allow
Allow from all
AllowOverride All
Require all granted
</Directory>
<Location />
</Location>
</VirtualHost>
Esta é a configuração SSL
<VirtualHost _default_:443>
SSLEngine On
SSLProxyEngine On
ProxyRequests Off
ProxyPreserveHost On
SSLProxyVerify none
SSLProxyCheckPeerCN off
SSLProxyCheckPeerName off
SSLProxyCheckPeerExpire off
ServerAdmin ***@gmail.com
DocumentRoot /var/www/html/hhs_api
ServerName api.***.xyz
SSLCertificateFile "/etc/httpd/conf/hhs_api-ssl/certificate.crt"
SSLCertificateChainFile "/etc/httpd/conf/hhs_api-ssl/ca_bundle.crt"
SSLCertificateKeyFile "/etc/httpd/conf/hhs_api-ssl/private.key"
ProxyPass / http://127.0.0.1:6969/
ProxyPassReverse / http://127.0.0.1:6969/
<Directory "/var/www/html/hhs_api">
Order deny,allow
Allow from all
AllowOverride All
Require all granted
</Directory>
</VirtualHost>
Antes de hoje, tudo funcionava bem. Eu não sei por quê.